Skip to content

Commit

Permalink
tests: test under python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dairiki committed Sep 4, 2024
1 parent 1eaa75d commit cdd9035
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@

#### Testing

- Test under python 3.10 and 3.11.
- Test under python 3.10, 3.11, and 3.12.

- Fix tox config to cope with the fact that recent tox/virtualenv does
not support EOLed versions of python.

### Release 0.1.1 (2021-08-16)

Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
minversion = 3.23
envlist =
py{38,39,310,311}
py{38,39,310,311,312}
pypy{38,310}
eol_py{27,36,37,py27}
cover-{clean,report}
Expand All @@ -19,6 +19,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
pypy-2.7: pypy27
pypy-3.8: pypy38
pypy-3.10: pypy310
Expand All @@ -32,8 +33,8 @@ commands =
pytest --doctest-modules --doctest-glob=README.md README.md src

depends:
py{38,39,310,311},pypy{27,38,310}: cover-clean
cover-report: py{38,39,310,311},pypy{27,38,310}
py{38,39,310,311,312},pypy{27,38,310}: cover-clean
cover-report: py{38,39,310,311,312},pypy{27,38,310}


[testenv:cover-clean]
Expand Down

0 comments on commit cdd9035

Please sign in to comment.