Skip to content

Commit

Permalink
3.12 compatibility (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithasaurus committed Sep 29, 2023
1 parent 27c4caf commit 1d38dde
Show file tree
Hide file tree
Showing 3 changed files with 124 additions and 116 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', '3.11']
poetry-version: [1.2.2]
os: [ubuntu-20.04, macos-latest, windows-latest]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12.0-rc.3']
poetry-version: [1.6]
os: [ubuntu-22.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand All @@ -27,13 +27,13 @@ jobs:
if: matrix.python-version == 3.8 || matrix.python-version == 3.9
run: poetry run pytest --ignore tests/test_310.py
- name: run 3.10+ tests
if: matrix.python-version == 3.10 || matrix.python-version == 3.11
if: matrix.python-version == 3.10 || matrix.python-version == 3.11 || matrix.python-version == '3.12.0-rc.3'
run: poetry run pytest
- name: linting 3.9-
if: matrix.python-version == 3.8 || matrix.python-version == 3.9
run: poetry run flake8 --exclude tests/test_310.py
- name: linting 3.10+
if: matrix.python-version == 3.10 || matrix.python-version == 3.11
if: matrix.python-version == 3.10 || matrix.python-version == 3.11 || matrix.python-version == '3.12.0-rc.3'
run: poetry run flake8
- name: benchmarks
run: poetry run python -m bench.run
Loading

0 comments on commit 1d38dde

Please sign in to comment.