diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-04-27 23:59:42 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-04-28 00:08:23 +0300 |
commit | 1a84ca0a513349509c5e90a2581a6006fa416253 (patch) | |
tree | 7c17508674224f7bc98fd52e38e1298a811837f1 /contrib/python/zope.interface/py3 | |
parent | 0f9874a47090250cf263e617e4c6fcc410eb6ffd (diff) | |
download | ydb-1a84ca0a513349509c5e90a2581a6006fa416253.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/python/zope.interface/py3')
-rw-r--r-- | contrib/python/zope.interface/py3/.dist-info/METADATA | 8 | ||||
-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, 11 insertions, 2 deletions
diff --git a/contrib/python/zope.interface/py3/.dist-info/METADATA b/contrib/python/zope.interface/py3/.dist-info/METADATA index 551c582ac8..90aae5b9d9 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.2 +Version: 6.3 Summary: Interfaces for Python Home-page: https://github.com/zopefoundation/zope.interface Author: Zope Foundation and Contributors @@ -75,6 +75,12 @@ For detailed documentation, please see https://zopeinterface.readthedocs.io/en/l Changes ========= +6.3 (2024-04-12) +================ + +- Add preliminary support for Python 3.13 as of 3.13a6. + + 6.2 (2024-02-16) ================ diff --git a/contrib/python/zope.interface/py3/ya.make b/contrib/python/zope.interface/py3/ya.make index 514772e2ba..1bc58aab0a 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.2) +VERSION(6.3) 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 8143daf3dd..733e3954fe 100644 --- a/contrib/python/zope.interface/py3/zope/interface/interface.py +++ b/contrib/python/zope.interface/py3/zope/interface/interface.py @@ -799,6 +799,9 @@ class InterfaceClass(_InterfaceClassBase): '__qualname__', # __annotations__: PEP 3107 (Python 3.0+) '__annotations__', + # __static_attributes__: Python 3.13a6+ + # https://github.com/python/cpython/pull/115913 + '__static_attributes__', ) and aval is not _decorator_non_return } |