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 Aug 2, 2023
1 parent d012f8f commit 4fdc365
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -76,7 +76,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: Enable UTF-8 on Windows
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
@@ -1,3 +1,8 @@
v4.18.5
=======

* Declare support for Py3.12

v4.18.4
=======

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -42,7 +42,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"])
@nox.parametrize("installable", INSTALLABLE)
def tests(session, installable):

Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Expand Up @@ -25,6 +25,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 Expand Up @@ -68,8 +69,8 @@ format-nongpl = [
jsonschema = "jsonschema.cli:main"

[project.urls]
Homepage = "https://github.com/python-jsonschema/jsonschema"
Documentation = "https://python-jsonschema.readthedocs.io/"
Homepage = "https://github.com/python-jsonschema/jsonschema"
Issues = "https://github.com/python-jsonschema/jsonschema/issues/"
Funding = "https://github.com/sponsors/Julian"
Tidelift = "https://tidelift.com/subscription/pkg/pypi-jsonschema?utm_source=pypi-jsonschema&utm_medium=referral&utm_campaign=pypi-link"
Expand Down Expand Up @@ -170,6 +171,8 @@ ignore = [
"D407",
# Plz spaces after section headers
"D412",
# We support 3.8 + 3.9
"UP007",
]
extend-exclude = ["json"]

Expand Down

0 comments on commit 4fdc365

Please sign in to comment.