File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Changes
10
10
7.3 (2024-09-30)
11
11
----------------
12
12
13
+ - Allow to use the package with Python 3.13 -- Caution: No security
14
+ audit has been done so far.
13
15
- Increase the safety level of ``safer_getattr `` allowing applications to use
14
16
it as ``getattr `` implementation. Such use should now follow the same policy
15
17
and give the same level of protection as direct attribute access in an
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ def read(*rnames):
65
65
packages = find_packages ('src' ),
66
66
package_dir = {'' : 'src' },
67
67
install_requires = [],
68
- python_requires = ">=3.7, <3.13 " ,
68
+ python_requires = ">=3.7, <3.14 " ,
69
69
extras_require = {
70
70
'test' : tests_require ,
71
71
'docs' : ['Sphinx' , 'sphinx_rtd_theme' ],
You can’t perform that action at this time.
0 commit comments