diff --git a/CHANGES.rst b/CHANGES.rst index 2bb5f4d..7bae695 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,8 @@ Changes 7.3 (2024-09-30) ---------------- +- Allow to use the package with Python 3.13 -- Caution: No security + audit has been done so far. - Increase the safety level of ``safer_getattr`` allowing applications to use it as ``getattr`` implementation. Such use should now follow the same policy and give the same level of protection as direct attribute access in an diff --git a/setup.py b/setup.py index a1fc431..79f9bc3 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ def read(*rnames): packages=find_packages('src'), package_dir={'': 'src'}, install_requires=[], - python_requires=">=3.7, <3.13", + python_requires=">=3.7, <3.14", extras_require={ 'test': tests_require, 'docs': ['Sphinx', 'sphinx_rtd_theme'],