Skip to content

Commit

Permalink
updated python versions to test with
Browse files Browse the repository at this point in the history
  • Loading branch information
jake authored and jake committed Mar 19, 2024
1 parent b7fcca6 commit e84edd1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
fail-fast: false
max-parallel: 1 # Avoid timeout errors
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
[tox]
envlist = py37,py38,py39,py310,py311,pypy37,pypy38,pypy39
envlist = py38,py39,py310,py311,py312,pypy37,pypy38,pypy39

[testenv]
deps = -r tests/requirements.txt
# See setup.cfg for changes to default settings
commands = ruff .
pytest {posargs}

[testenv:py37]
basepython=python3.7

[testenv:py38]
basepython=python3.8

Expand All @@ -21,3 +18,6 @@ basepython=python3.10

[testenv:py311]
basepython=python3.11

[testenv:py312]
basepython=python3.12

0 comments on commit e84edd1

Please sign in to comment.