Skip to content

Commit

Permalink
feat: support python 3.12 (#460)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck authored Oct 4, 2023
1 parent 37219c3 commit eaba7a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
include:
- # test with the latest dependencies
os: ubuntu-latest
python-version: '3.11'
python-version: '3.12'
toxenv-factors: '-current'
- # test with the lowest dependencies
os: ubuntu-latest
Expand Down Expand Up @@ -93,7 +93,8 @@ jobs:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
python-version:
- "3.11" # highest supported
- "3.12" # highest supported
- "3.11"
- "3.10"
- "3.9"
- "3.8" # lowest supported
Expand Down Expand Up @@ -189,7 +190,7 @@ jobs:
# see https://github.com/actions/setup-python
uses: actions/setup-python@v4
with:
python-version: '>=3.8 <=3.11' # supported version range
python-version: '>=3.8 <=3.12' # supported version range
- name: Validate Python Environment
shell: python
run: |
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Typing :: Typed',
]
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ minversion = 4.0
envlist =
flake8
mypy-{current,lowest}
py{311,310,39,38}-{allExtras,noExtras}
py{312,311,310,39,38}-{allExtras,noExtras}
skip_missing_interpreters = True
usedevelop = False
download = False
Expand Down

0 comments on commit eaba7a0

Please sign in to comment.