Skip to content

Commit

Permalink
Merge pull request #54 from willkg/50-python312
Browse files Browse the repository at this point in the history
Add support for Python 3.12 (#50)
  • Loading branch information
willkg authored Oct 3, 2023
2 parents fb5004d + 9518d71 commit 6831566
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

name: Python ${{ matrix.python-version}}
steps:
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,15 @@ envlist =
py39
py310
py311
py312
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
[testenv]
deps = -rrequirements-dev.txt
Expand Down
18 changes: 9 additions & 9 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
-e .

black==22.10.0
build==0.9.0
pytest==7.2.0
requests==2.28.1
ruff==0.0.262
sentry-sdk==1.10.1
tox==3.27.0
tox-gh-actions==2.10.0
twine==4.0.1
black==23.9.1
build==1.0.3
pytest==7.4.2
requests==2.31.0
ruff==0.0.292
sentry-sdk==1.31.0
tox==4.11.3
tox-gh-actions==3.1.3
twine==4.0.2
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def get_file(fn):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
project_urls={
"Tracker": "https://github.com/willkg/kent/issues",
Expand Down

0 comments on commit 6831566

Please sign in to comment.