diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 720b2ed..6b7ffcd 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -31,7 +31,7 @@ jobs: fail-fast: false matrix: # Use strings since yaml considers 3.10 equal to 3.1 - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 @@ -49,7 +49,7 @@ jobs: # Only lint a single version; pick a recent, stable version - name: Install linting dependencies id: install-linters - if: matrix.python-version == '3.9' + if: matrix.python-version == '3.10' run: | python -m pip install flake8 flake8-comprehensions flake8-docstrings @@ -67,7 +67,7 @@ jobs: - name: Install optional dependencies id: install-optional # uncomment below in case this step ever needs skipped again - #if: matrix.python-version != '3.11' + if: matrix.python-version != '3.12' run: python -m pip install "pentapy>=1.0" "numba>=0.45" - name: Test with optional dependencies