Skip to content

Commit

Permalink
support py12
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <[email protected]>
  • Loading branch information
jkowalleck committed Sep 19, 2023
1 parent 5f404e6 commit ae147cc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
fail-fast: false
matrix:
include:
- # test with the latest dependencies
os: ubuntu-latest
python-version: '3.12.0-rc.3'
toxenv-factors: '-current'
- # test with the latest dependencies
os: ubuntu-latest
python-version: '3.11'
Expand Down Expand Up @@ -93,7 +97,8 @@ jobs:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
python-version:
- "3.11" # highest supported
- "3.12.0-rc.3" # highest supported
- "3.11"
- "3.10"
- "3.9"
- "3.8" # lowest supported
Expand Down Expand Up @@ -189,7 +194,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

0 comments on commit ae147cc

Please sign in to comment.