Skip to content

Commit

Permalink
TESTS: Check CI for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
derb12 committed Dec 31, 2023
1 parent 8a5c5e4 commit 29f8ac8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 29f8ac8

Please sign in to comment.