We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada2f73 commit d9c2d34Copy full SHA for d9c2d34
setup.py
@@ -40,11 +40,11 @@ def read(*rnames):
40
'License :: OSI Approved :: Zope Public License',
41
'Programming Language :: Python',
42
'Programming Language :: Python :: 3',
43
- 'Programming Language :: Python :: 3.7',
44
- 'Programming Language :: Python :: 3.8',
45
'Programming Language :: Python :: 3.9',
46
'Programming Language :: Python :: 3.10',
47
'Programming Language :: Python :: 3.11',
+ 'Programming Language :: Python :: 3.12',
+ 'Programming Language :: Python :: 3.13',
48
'Programming Language :: Python :: Implementation',
49
'Programming Language :: Python :: Implementation :: CPython',
50
'Programming Language :: Python :: Implementation :: PyPy',
@@ -54,7 +54,7 @@ def read(*rnames):
54
namespace_packages=['grokcore'],
55
include_package_data=True,
56
zip_safe=False,
57
- python_requires='>=3.7',
+ python_requires='>=3.9',
58
install_requires=[
59
'setuptools',
60
'grokcore.component >= 2.1',
src/grokcore/formlib/components.py
@@ -18,6 +18,7 @@
18
import warnings
19
20
import pytz
21
+
22
from zope.formlib import form
23
from zope.interface import implementer_only
24
from zope.interface.common import idatetime
0 commit comments