zope.hookable 7.0__cp312-cp312-macosx_11_0_arm64.whl → 8.1__cp312-cp312-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of zope.hookable might be problematic. Click here for more details.
- zope/hookable/__init__.py +1 -1
- zope/hookable/_zope_hookable.cpython-312-darwin.so +0 -0
- {zope.hookable-7.0.dist-info → zope_hookable-8.1.dist-info}/METADATA +41 -13
- zope_hookable-8.1.dist-info/RECORD +11 -0
- {zope.hookable-7.0.dist-info → zope_hookable-8.1.dist-info}/WHEEL +1 -1
- zope.hookable-7.0-py3.12-nspkg.pth +0 -1
- zope.hookable-7.0.dist-info/RECORD +0 -13
- zope.hookable-7.0.dist-info/namespace_packages.txt +0 -1
- {zope.hookable-7.0.dist-info → zope_hookable-8.1.dist-info/licenses}/LICENSE.txt +0 -0
- {zope.hookable-7.0.dist-info → zope_hookable-8.1.dist-info}/top_level.txt +0 -0
zope/hookable/__init__.py
CHANGED
|
@@ -70,7 +70,7 @@ class _py_hookable:
|
|
|
70
70
|
|
|
71
71
|
try:
|
|
72
72
|
from zope.hookable._zope_hookable import hookable as _c_hookable
|
|
73
|
-
except
|
|
73
|
+
except ModuleNotFoundError: # pragma: no cover
|
|
74
74
|
_c_hookable = None
|
|
75
75
|
|
|
76
76
|
if _PYPY_OR_JAVA or _PURE_PYTHON or _c_hookable is None:
|
|
Binary file
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: zope.hookable
|
|
3
|
-
Version:
|
|
3
|
+
Version: 8.1
|
|
4
4
|
Summary: Zope hookable
|
|
5
5
|
Home-page: http://github.com/zopefoundation/zope.hookable
|
|
6
6
|
Author: Zope Foundation and Contributors
|
|
7
|
-
Author-email: zope-dev@zope.
|
|
8
|
-
License: ZPL
|
|
7
|
+
Author-email: zope-dev@zope.dev
|
|
8
|
+
License: ZPL-2.1
|
|
9
9
|
Keywords: function hook replacement loose coupled
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
@@ -13,29 +13,38 @@ Classifier: License :: OSI Approved :: Zope Public License
|
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
14
|
Classifier: Programming Language :: Python
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
18
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
22
21
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
23
22
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
24
23
|
Classifier: Framework :: Zope :: 3
|
|
25
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
26
|
-
Requires-Python: >=3.
|
|
25
|
+
Requires-Python: >=3.10
|
|
27
26
|
License-File: LICENSE.txt
|
|
28
|
-
Requires-Dist: setuptools
|
|
29
27
|
Provides-Extra: docs
|
|
30
28
|
Requires-Dist: Sphinx; extra == "docs"
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Provides-Extra: test
|
|
33
|
-
Requires-Dist: zope.testing; extra == "test"
|
|
34
|
-
Requires-Dist: zope.testrunner; extra == "test"
|
|
29
|
+
Requires-Dist: sphinx_rtd_theme; extra == "docs"
|
|
35
30
|
Provides-Extra: testing
|
|
36
31
|
Requires-Dist: zope.testing; extra == "testing"
|
|
37
|
-
Requires-Dist: zope.testrunner; extra == "testing"
|
|
32
|
+
Requires-Dist: zope.testrunner>=6.4; extra == "testing"
|
|
38
33
|
Requires-Dist: coverage; extra == "testing"
|
|
34
|
+
Provides-Extra: test
|
|
35
|
+
Requires-Dist: zope.testing; extra == "test"
|
|
36
|
+
Requires-Dist: zope.testrunner>=6.4; extra == "test"
|
|
37
|
+
Dynamic: author
|
|
38
|
+
Dynamic: author-email
|
|
39
|
+
Dynamic: classifier
|
|
40
|
+
Dynamic: description
|
|
41
|
+
Dynamic: home-page
|
|
42
|
+
Dynamic: keywords
|
|
43
|
+
Dynamic: license
|
|
44
|
+
Dynamic: license-file
|
|
45
|
+
Dynamic: provides-extra
|
|
46
|
+
Dynamic: requires-python
|
|
47
|
+
Dynamic: summary
|
|
39
48
|
|
|
40
49
|
===============
|
|
41
50
|
zope.hookable
|
|
@@ -75,6 +84,24 @@ Documentation is hosted at https://zopehookable.readthedocs.io
|
|
|
75
84
|
Changes
|
|
76
85
|
=========
|
|
77
86
|
|
|
87
|
+
8.1 (2025-10-28)
|
|
88
|
+
================
|
|
89
|
+
|
|
90
|
+
- Remove unnecessary ``setuptools`` runtime dependency.
|
|
91
|
+
|
|
92
|
+
- Drop support for Python 3.9.
|
|
93
|
+
|
|
94
|
+
- Add support for Python 3.14.
|
|
95
|
+
|
|
96
|
+
8.0 (2025-09-12)
|
|
97
|
+
================
|
|
98
|
+
|
|
99
|
+
- Replace ``pkg_resources`` namespace with PEP 420 native namespace.
|
|
100
|
+
|
|
101
|
+
- Drop support for Python 3.8.
|
|
102
|
+
|
|
103
|
+
- Add preliminary support for Python 3.14.
|
|
104
|
+
|
|
78
105
|
7.0 (2024-09-17)
|
|
79
106
|
================
|
|
80
107
|
|
|
@@ -89,6 +116,7 @@ Documentation is hosted at https://zopehookable.readthedocs.io
|
|
|
89
116
|
|
|
90
117
|
- Build windows wheels on GHA.
|
|
91
118
|
|
|
119
|
+
|
|
92
120
|
6.0 (2023-10-05)
|
|
93
121
|
================
|
|
94
122
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
zope/hookable/__init__.py,sha256=AlGd7CUrQFdO8X82n8At-Fb4oVU1woiE2AoKQUPiNYg,2460
|
|
2
|
+
zope/hookable/_zope_hookable.c,sha256=N9LOxTLZ-fZN8o_iNg8mjUNCX4na4UoGO0eDrkIqLic,7452
|
|
3
|
+
zope/hookable/_zope_hookable.cpython-312-darwin.so,sha256=ns7CMwmJob3rG3zuv8QXM1g_C9mP3Z5goBDeDxZvcgk,51832
|
|
4
|
+
zope/hookable/tests/__init__.py,sha256=Z9EJNKBQorYcdV6oaIRTRgF41SMRZEEoLltZCKyVPI8,47
|
|
5
|
+
zope/hookable/tests/test_compile_flags.py,sha256=91siNUs2kotDUYpVV1vAZ_opWhZ50X4_DYkIiNMh6h0,1289
|
|
6
|
+
zope/hookable/tests/test_hookable.py,sha256=3FdXSprA60j5eX3LftT6MZG80moqG-0tTwQn_KjNLQc,6330
|
|
7
|
+
zope_hookable-8.1.dist-info/licenses/LICENSE.txt,sha256=PmcdsR32h1FswdtbPWXkqjg-rKPCDOo_r1Og9zNdCjw,2070
|
|
8
|
+
zope_hookable-8.1.dist-info/METADATA,sha256=ElY1p3uExRuj2OTiKcYkt4E73I1qOUWknXZvA8ACN4U,6663
|
|
9
|
+
zope_hookable-8.1.dist-info/WHEEL,sha256=CltXN3lQvXbHxKDtiDwW0RNzF8s2WyBuPbOAX_ZeQlA,109
|
|
10
|
+
zope_hookable-8.1.dist-info/top_level.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
|
11
|
+
zope_hookable-8.1.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import sys, types, os;p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('zope',));importlib = __import__('importlib.util');__import__('importlib.machinery');m = sys.modules.setdefault('zope', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('zope', [os.path.dirname(p)])));m = m or sys.modules.setdefault('zope', types.ModuleType('zope'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
zope.hookable-7.0-py3.12-nspkg.pth,sha256=_l6EZJaefCi1yytmDbFQGX_jfS2gAtFyaDmlK1uFLec,457
|
|
2
|
-
zope/hookable/__init__.py,sha256=MCERh1crK21EutC4dfGTpE3-IkeiJ-UV7NQZnHj860Q,2452
|
|
3
|
-
zope/hookable/_zope_hookable.c,sha256=N9LOxTLZ-fZN8o_iNg8mjUNCX4na4UoGO0eDrkIqLic,7452
|
|
4
|
-
zope/hookable/_zope_hookable.cpython-312-darwin.so,sha256=fpI89QIMO7vl5-A93BER1kjlnpb2-A2THoX-qe0AeAo,52968
|
|
5
|
-
zope/hookable/tests/__init__.py,sha256=Z9EJNKBQorYcdV6oaIRTRgF41SMRZEEoLltZCKyVPI8,47
|
|
6
|
-
zope/hookable/tests/test_compile_flags.py,sha256=91siNUs2kotDUYpVV1vAZ_opWhZ50X4_DYkIiNMh6h0,1289
|
|
7
|
-
zope/hookable/tests/test_hookable.py,sha256=3FdXSprA60j5eX3LftT6MZG80moqG-0tTwQn_KjNLQc,6330
|
|
8
|
-
zope.hookable-7.0.dist-info/LICENSE.txt,sha256=PmcdsR32h1FswdtbPWXkqjg-rKPCDOo_r1Og9zNdCjw,2070
|
|
9
|
-
zope.hookable-7.0.dist-info/METADATA,sha256=1witCICXrkHxXfLoxFqyOnCTCqnA-2UEIif0DWQfH2Q,6168
|
|
10
|
-
zope.hookable-7.0.dist-info/WHEEL,sha256=stdCwhyjiC6LzHI-fEibiHQtTULEgvfCFF-5kawH9Pw,109
|
|
11
|
-
zope.hookable-7.0.dist-info/namespace_packages.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
|
12
|
-
zope.hookable-7.0.dist-info/top_level.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
|
13
|
-
zope.hookable-7.0.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
zope
|
|
File without changes
|
|
File without changes
|