feat: adds support for Python runtime 3.14 #554
Workflow file for this run
This file contains hidden or 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
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| name: unittest | |
| jobs: | |
| unit: | |
| # Use `ubuntu-22.04` runner. | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| python: ['3.9', '3.11', '3.12', '3.13', '3.14'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Install nox | |
| run: | | |
| python -m pip install --upgrade setuptools pip wheel | |
| python -m pip install nox | |
| - name: Install GDAL and Arrow | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y -V ca-certificates lsb-release wget software-properties-common gpg | |
| wget https://apache.jfrog.io/artifactory/arrow/gpg.key -O apache-arrow-gpg.key | |
| cat apache-arrow-gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/apache-arrow-keyring.gpg | |
| echo "deb [signed-by=/usr/share/keyrings/apache-arrow-keyring.gpg] https://apache.jfrog.io/artifactory/arrow/$(lsb_release -cs) $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/apache-arrow.list | |
| sudo apt-get update | |
| sudo apt-get install -y libgdal-dev libarrow-dev libarrow-dataset-dev | |
| - name: Run unit tests | |
| env: | |
| COVERAGE_FILE: .coverage-${{ matrix.python }} | |
| run: | | |
| nox -s unit-${{ matrix.python }} | |
| - name: Upload coverage results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-artifact-${{ matrix.python }} | |
| path: .coverage-${{ matrix.python }} | |
| include-hidden-files: true | |
| unit_noextras: | |
| # Use `ubuntu-latest` runner. | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python: ['3.9', '3.13'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Install nox | |
| run: | | |
| python -m pip install --upgrade setuptools pip wheel | |
| python -m pip install nox | |
| - name: Run unit_noextras tests | |
| env: | |
| COVERAGE_FILE: .coverage-unit-noextras-${{ matrix.python }} | |
| run: | | |
| nox -s unit_noextras-${{ matrix.python }} | |
| - name: Upload coverage results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-artifact-unit-noextras-${{ matrix.python }} | |
| path: .coverage-unit-noextras-${{ matrix.python }} | |
| include-hidden-files: true | |
| cover: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - unit | |
| - unit_noextras | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.9" | |
| - name: Install coverage | |
| run: | | |
| python -m pip install --upgrade setuptools pip wheel | |
| python -m pip install coverage | |
| - name: Download coverage results | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: .coverage-results/ | |
| - name: Report coverage results | |
| run: | | |
| find .coverage-results -type f -name '*.zip' -exec unzip {} \; | |
| coverage combine .coverage-results/**/.coverage* | |
| coverage report --show-missing --fail-under=100 |