|
|
|
@ -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
|
|
|
|
|