Skip to content

Commit

Permalink
Enable build of 3.11 and 3.12 (#72)
Browse files Browse the repository at this point in the history
* Enable 3.11 and 3.12 dev in tox.ini
* Enable 3.11 and 3.12 dev in CI workflow
* Add 3.10 to 3.12 classifier to setup.py
  • Loading branch information
rffontenelle committed Oct 23, 2022
1 parent 0084499 commit 6cdd9ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11-dev', '3.12-dev']
max-parallel: 1

steps:
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Sphinx",
],
author="Takayuki SHIMIZUKAWA",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{36,37,38,39,310},
py{36,37,38,39,310,311-dev,312-dev},
flake8,
mypy

Expand All @@ -11,6 +11,8 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311-dev
3.12: py312-dev

[testenv]
deps=-e.[transifex,test]
Expand Down

0 comments on commit 6cdd9ac

Please sign in to comment.