Support python 3.9 and above only #377
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main, master] | |
tags: '*' | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
tox: | |
name: ${{ matrix.env }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
env: [py39, py310, py311, py312, py313] | |
steps: | |
- uses: asottile/workflows/.github/actions/fast-checkout@v1.8.0 | |
with: | |
submodules: false | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: | | |
${{ | |
(matrix.env == 'py39' || startsWith(matrix.env, 'py39-')) && '3.9' || | |
(matrix.env == 'py310' || startsWith(matrix.env, 'py310-')) && '3.10' || | |
(matrix.env == 'py311' || startsWith(matrix.env, 'py311-')) && '3.11' || | |
(matrix.env == 'py312' || startsWith(matrix.env, 'py312-')) && '3.12' || | |
(matrix.env == 'py313' || startsWith(matrix.env, 'py313-')) && '3.13' | |
}} | |
- name: Install tesseract | |
run: sudo apt-get -y update && sudo apt-get install -y tesseract-ocr tesseract-ocr-fra | |
- name: Print tesseract version | |
run: echo $(tesseract --version) | |
- name: Test pytesseract package installation | |
run: pip install -U . && pip show pytesseract && python -c 'import pytesseract' |