Skip to content

Commit

Permalink
Claim support for Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
niccokunzmann committed Oct 25, 2023
1 parent cb01175 commit c202c0e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ jobs:
strategy:
matrix:
config:
# [Python version, tox env]
# [Python version, tox env, timezone]
- ["3.7", "py37", "Europe/Berlin"]
- ["3.8", "py38", "Australia/Sydney"]
- ["3.9", "py39", "UTC"]
- ["3.10", "py310", "Asia/Singapore"]
- ["3.11", "py311", "Asia/Singapore"]

runs-on: ubuntu-latest
name: ${{ matrix.config[1] }}
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,12 @@ def run(self):
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3 :: Only',
'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',
development_state
],
zip_safe=True,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[tox]
skipsdist = True
envlist = py37, py38, py39, py310
envlist = py37, py38, py39, py310, py311

[testenv]
setenv = TMPDIR={envtmpdir}
Expand Down

0 comments on commit c202c0e

Please sign in to comment.