Skip to content

Commit d9c2d34

Browse files
committed
Update Python version support.
1 parent ada2f73 commit d9c2d34

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ def read(*rnames):
4040
'License :: OSI Approved :: Zope Public License',
4141
'Programming Language :: Python',
4242
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.7',
44-
'Programming Language :: Python :: 3.8',
4543
'Programming Language :: Python :: 3.9',
4644
'Programming Language :: Python :: 3.10',
4745
'Programming Language :: Python :: 3.11',
46+
'Programming Language :: Python :: 3.12',
47+
'Programming Language :: Python :: 3.13',
4848
'Programming Language :: Python :: Implementation',
4949
'Programming Language :: Python :: Implementation :: CPython',
5050
'Programming Language :: Python :: Implementation :: PyPy',
@@ -54,7 +54,7 @@ def read(*rnames):
5454
namespace_packages=['grokcore'],
5555
include_package_data=True,
5656
zip_safe=False,
57-
python_requires='>=3.7',
57+
python_requires='>=3.9',
5858
install_requires=[
5959
'setuptools',
6060
'grokcore.component >= 2.1',

src/grokcore/formlib/components.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import warnings
1919

2020
import pytz
21+
2122
from zope.formlib import form
2223
from zope.interface import implementer_only
2324
from zope.interface.common import idatetime

0 commit comments

Comments
 (0)