Skip to content

Commit

Permalink
feat: enable support for python 3.12 (ansible-community#50)
Browse files Browse the repository at this point in the history
Test on python 3.12 and mark python 3.12 as supported.
  • Loading branch information
jooola authored Oct 13, 2023
1 parent 9a710f4 commit f665af4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

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

name: Python ${{ matrix.python-version }}
steps:
Expand All @@ -35,7 +35,7 @@ jobs:

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

permissions:
id-token: write
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# For more information about tox, see https://tox.readthedocs.io/en/latest/
[tox]
min_version = 4.0
env_list = py{39,310,311}-molecule{5,6}
env_list = py{39,310,311,312}-molecule{5,6}

[testenv]
usedevelop = True
Expand All @@ -23,3 +23,4 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

0 comments on commit f665af4

Please sign in to comment.