⬆ Move on to supporting Python >= 3.8 only

pull/103/head
Mike Gerber 4 months ago
parent c752793be6
commit 7a192880f1

@ -25,10 +25,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
# For Python 3.6, we need to fall back to Ubuntu 20.04
runs-on: ${{ matrix.python-version == '3.6' && 'ubuntu-20.04' || 'ubuntu-latest' }}
runs-on: "ubuntu-latest"
env:
test_results_dir: test-results-${{ matrix.python-version }}
@ -44,11 +43,6 @@ jobs:
- name: Update pip
run: python3 -m pip install -U pip
- name: Avoid compiling OpenCV and NumPy on Python 3.6
run: |
if python3 --version | grep -q "Python 3.6"; then
pip install --prefer-binary -U opencv-python-headless numpy
fi
- name: Install requirements*.txt
run: |
for requirements_txt in requirements*.txt; do

@ -9,7 +9,7 @@ authors = [
]
description = "The OCR evaluation tool"
readme = "README.md"
requires-python = ">=3.6"
requires-python = ">=3.8"
keywords = ["qurator", "ocr", "evaluation", "ocr-d"]
dynamic = ["version", "dependencies", "optional-dependencies"]

Loading…
Cancel
Save