diff options
-rw-r--r-- | .github/workflows/test-ci.yml | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 | ||||
-rw-r--r-- | tox.ini | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml index 3613d82f..53d6df35 100644 --- a/.github/workflows/test-ci.yml +++ b/.github/workflows/test-ci.yml | |||
@@ -15,7 +15,7 @@ jobs: | |||
15 | matrix: | 15 | matrix: |
16 | # ubuntu-20.04 is the last version that supports python 3.6 | 16 | # ubuntu-20.04 is the last version that supports python 3.6 |
17 | os: [ubuntu-20.04, macos-latest, windows-latest] | 17 | os: [ubuntu-20.04, macos-latest, windows-latest] |
18 | python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] | 18 | python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] |
19 | runs-on: ${{ matrix.os }} | 19 | runs-on: ${{ matrix.os }} |
20 | 20 | ||
21 | steps: | 21 | steps: |
diff --git a/pyproject.toml b/pyproject.toml index 1f663c5f..dddae152 100644 --- a/pyproject.toml +++ b/pyproject.toml | |||
@@ -15,4 +15,4 @@ | |||
15 | [tool.black] | 15 | [tool.black] |
16 | line-length = 80 | 16 | line-length = 80 |
17 | # NB: Keep in sync with tox.ini. | 17 | # NB: Keep in sync with tox.ini. |
18 | target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311'] | 18 | target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311'] #, 'py312' |
@@ -15,7 +15,7 @@ | |||
15 | # https://tox.readthedocs.io/ | 15 | # https://tox.readthedocs.io/ |
16 | 16 | ||
17 | [tox] | 17 | [tox] |
18 | envlist = lint, py36, py37, py38, py39, py310, py311 | 18 | envlist = lint, py36, py37, py38, py39, py310, py311, py312 |
19 | requires = virtualenv<20.22.0 | 19 | requires = virtualenv<20.22.0 |
20 | 20 | ||
21 | [gh-actions] | 21 | [gh-actions] |
@@ -26,6 +26,7 @@ python = | |||
26 | 3.9: py39 | 26 | 3.9: py39 |
27 | 3.10: py310 | 27 | 3.10: py310 |
28 | 3.11: py311 | 28 | 3.11: py311 |
29 | 3.12: py312 | ||
29 | 30 | ||
30 | [testenv] | 31 | [testenv] |
31 | deps = | 32 | deps = |