Skip to content

Commit

Permalink
Update build for current Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Oct 15, 2023
1 parent 3e9b388 commit 65a6b1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.6', '3.7', '3.8', '3.9', 'pypy3']
python: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.9']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
8 changes: 5 additions & 3 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist=flake8,py36,py37,py38,py39,pypy3,docs
envlist=flake8,py37,py38,py39,py310,py311,pypy3,docs
skip_missing_interpreters=True

[gh-actions]
Expand All @@ -8,7 +8,9 @@ python =
3.7: py37
3.8: py38
3.9: py39
pypy3: pypy3
3.10: py310
3.11: py311
pypy-3: pypy3

[testenv]
commands=
Expand All @@ -35,7 +37,7 @@ commands=
changedir=docs
deps=
sphinx
whitelist_externals=
allowlist_externals=
make
commands=
make html

0 comments on commit 65a6b1b

Please sign in to comment.