Skip to content

Commit

Permalink
Update dev dependencies (#25)
Browse files Browse the repository at this point in the history
* wip

* wip
  • Loading branch information
keithasaurus authored Dec 24, 2023
1 parent 1d38dde commit 0ea55b2
Show file tree
Hide file tree
Showing 3 changed files with 170 additions and 172 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12.0-rc.3']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
poetry-version: [1.6]
os: [ubuntu-22.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
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 || matrix.python-version == '3.12.0-rc.3'
if: matrix.python-version == 3.10 || matrix.python-version == 3.11 || matrix.python-version == '3.12'
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 || matrix.python-version == '3.12.0-rc.3'
if: matrix.python-version == 3.10 || matrix.python-version == 3.11 || matrix.python-version == '3.12'
run: poetry run flake8
- name: benchmarks
run: poetry run python -m bench.run
Loading

0 comments on commit 0ea55b2

Please sign in to comment.