Skip to content

Commit

Permalink
Declare support for 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Jul 18, 2023
1 parent 54d506c commit 627e662
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,14 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: |
3.8
3.9
3.10
3.11
3.12
pypy3.10
allow-prereleases: true
- name: Set up nox
uses: wntrblm/nox@2023.04.22
- name: Run nox
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _session(fn):
return _session


@session(python=["3.8", "3.9", "3.10", "3.11", "pypy3"])
@session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3"])
def tests(session):
session.install("-r", ROOT / "test-requirements.txt")

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: File Formats :: JSON",
Expand Down

0 comments on commit 627e662

Please sign in to comment.