Skip to content

Commit

Permalink
support python 3.12
Browse files Browse the repository at this point in the history
Note that we're not dropping the EOL python 3.7 out of support matrix
just yet as it still represents ~19% of all pypi downloads[^1].

[^1]: https://pypistats.org/packages/__all__
  • Loading branch information
leohemsted committed Dec 28, 2023
1 parent eb2d43a commit 0b24dfe
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 8.2.0

* Add support for python 3.12

## 8.1.0

* Reuse the same `requests.session` between requests to increase performance through HTTP Keepalive
Expand Down
2 changes: 1 addition & 1 deletion notifications_python_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# -- http://semver.org/

__version__ = "8.1.0"
__version__ = "8.2.0"

from notifications_python_client.errors import ( # noqa
REQUEST_ERROR_MESSAGE,
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def run_tests(self):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="gds govuk notify",
packages=find_packages(include=["notifications_python_client"]),
Expand Down
1 change: 1 addition & 0 deletions tox-python-versions
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
3.9
3.10
3.11
3.12
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{37, 38, 39, 310, 311}
py{37, 38, 39, 310, 311, 312}

[testenv]
allowlist_externals = make
Expand Down

0 comments on commit 0b24dfe

Please sign in to comment.