Skip to content

Commit

Permalink
Drop Python 3.8 from CI; allow for 3.13-dev.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Sep 4, 2024
1 parent af41ded commit c71f6d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"]
pytest-version: ["3", "4", "5", "6", "7", "8"]

exclude:
Expand Down Expand Up @@ -125,5 +125,5 @@ jobs:
python -m pip install tox
- name: Test
run: |
export PY_VERSION=${{ matrix.python-version }}
export PY_VERSION=$(cut -d- -f1 <<< ${{ matrix.python-version }})
tox -e py${PY_VERSION/./}-pytest${{ matrix.pytest-version }} --installpkg dist/*.whl

0 comments on commit c71f6d9

Please sign in to comment.