Skip to content

Commit

Permalink
Support Python 3.12 officially
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperCraeghs committed Oct 13, 2023
1 parent 29ad9b4 commit 2fb354f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
keywords=[
'Jira',
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py37, py38, py39, py310, py3.11
py37, py38, py39, py310, py311, py312
clean,
check,

Expand All @@ -11,6 +11,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
basepython =
Expand All @@ -21,6 +22,7 @@ basepython =
py39: {env:TOXPYTHON:python3.9}
py310: {env:TOXPYTHON:python3.10}
py311: {env:TOXPYTHON:python3.11}
py312: {env:TOXPYTHON:python3.12}
{clean,check,report,coveralls}: python3
setenv =
PYTHONPATH={toxinidir}/tests
Expand Down

0 comments on commit 2fb354f

Please sign in to comment.