Skip to content

Commit

Permalink
Declare support for Python 3.12 and test with 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Oct 5, 2023
1 parent 0d1d8d5 commit 59bc93a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup nox
uses: wntrblm/[email protected]
with:
python-versions: "3.11"
python-versions: "3.12"
- run: |
nox -v -e lint
nox-test:
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Setup nox
uses: wntrblm/[email protected]
with:
python-versions: "3.9, 3.10, 3.11"
python-versions: "3.9, 3.10, 3.11, 3.12"
- name: Run unit tests
run: |
nox -v -e test
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def install(session: nox.Session, *args, editable=False, **kwargs):
session.install(*args, "-U", **kwargs)


@nox.session(python=["3.9", "3.10", "3.11"])
@nox.session(python=["3.9", "3.10", "3.11", "3.12"])
def test(session: nox.Session):
install(
session,
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
requires-python = ">=3.9"
Expand Down

0 comments on commit 59bc93a

Please sign in to comment.