Skip to content

Commit

Permalink
Add Python 3.12 support; drop Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed May 2, 2024
1 parent a81a561 commit 6f84b84
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
config:
# [Python version, tox env]
- ["3.9", "lint"]
- ["3.7", "py37"]
- ["3.8", "py38"]
- ["3.9", "py39"]
- ["3.10", "py310"]
- ["3.11", "py311"]
- ["3.12", "py312"]
- ["pypy-3.9", "pypy3"]
- ["3.9", "coverage"]

Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Change log
5.1 (unreleased)
================

- Add support for Python 3.12.

- Drop support for Python 3.7.

- Fix ``SIGCHLD``/``wait`` raise condition associated with the
``start-test-program`` option.
For details see `#33 <https://github.com/zopefoundation/zdaemon/pull/33>`_.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ def read(*rnames):
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'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',
'Operating System :: POSIX',
Expand All @@ -73,7 +73,7 @@ def read(*rnames):
zip_safe=False,
entry_points=entry_points,
include_package_data=True,
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=[
"ZConfig",
"setuptools"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
minversion = 3.18
envlist =
lint
py37
py38
py39
py310
py311
py312
pypy3
coverage

Expand Down

0 comments on commit 6f84b84

Please sign in to comment.