diff options
| author | robot-piglet <[email protected]> | 2024-05-30 08:17:58 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2024-05-30 08:26:12 +0300 |
| commit | 01f2411babd0705e4aac13107b58c66687199ea7 (patch) | |
| tree | 78a3e8965fe1d0236278c9259c841c5ae5e048cc /contrib/python/zope.interface/py3 | |
| parent | e19b28ad3cdf1f5a497ce4da91bcaa66b8497e1a (diff) | |
Intermediate changes
Diffstat (limited to 'contrib/python/zope.interface/py3')
| -rw-r--r-- | contrib/python/zope.interface/py3/.dist-info/METADATA | 10 | ||||
| -rw-r--r-- | contrib/python/zope.interface/py3/ya.make | 2 | ||||
| -rw-r--r-- | contrib/python/zope.interface/py3/zope/interface/interface.py | 3 |
3 files changed, 13 insertions, 2 deletions
diff --git a/contrib/python/zope.interface/py3/.dist-info/METADATA b/contrib/python/zope.interface/py3/.dist-info/METADATA index 90aae5b9d9e..50651bb9eba 100644 --- a/contrib/python/zope.interface/py3/.dist-info/METADATA +++ b/contrib/python/zope.interface/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: zope.interface -Version: 6.3 +Version: 6.4 Summary: Interfaces for Python Home-page: https://github.com/zopefoundation/zope.interface Author: Zope Foundation and Contributors @@ -75,6 +75,14 @@ For detailed documentation, please see https://zopeinterface.readthedocs.io/en/l Changes ========= +6.4 (2024-05-15) +================ + +- Adjust for incompatible changes in Python 3.13b1. + (`#292 <https://github.com/zopefoundation/zope.interface/issues/292>`) + +- Build windows wheels on GHA. + 6.3 (2024-04-12) ================ diff --git a/contrib/python/zope.interface/py3/ya.make b/contrib/python/zope.interface/py3/ya.make index 1bc58aab0ae..a7510871163 100644 --- a/contrib/python/zope.interface/py3/ya.make +++ b/contrib/python/zope.interface/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(6.3) +VERSION(6.4) LICENSE(ZPL-2.1) diff --git a/contrib/python/zope.interface/py3/zope/interface/interface.py b/contrib/python/zope.interface/py3/zope/interface/interface.py index 733e3954fe5..8e0d9ad2b79 100644 --- a/contrib/python/zope.interface/py3/zope/interface/interface.py +++ b/contrib/python/zope.interface/py3/zope/interface/interface.py @@ -802,6 +802,9 @@ class InterfaceClass(_InterfaceClassBase): # __static_attributes__: Python 3.13a6+ # https://github.com/python/cpython/pull/115913 '__static_attributes__', + # __firstlineno__: Python 3.13b1+ + # https://github.com/python/cpython/pull/118475 + '__firstlineno__', ) and aval is not _decorator_non_return } |
