7
7
8
8
from numpydoc import __version__ as version
9
9
10
- if sys .version_info < (3 , 5 ):
11
- raise RuntimeError ("Python version >= 3.5 required." )
10
+ if sys .version_info < (3 , 7 ):
11
+ raise RuntimeError ("Python version >= 3.7 required." )
12
12
13
13
14
14
def read (fname ):
@@ -35,19 +35,18 @@ def read(fname):
35
35
"Topic :: Documentation" ,
36
36
"Programming Language :: Python" ,
37
37
"Programming Language :: Python :: 3" ,
38
- "Programming Language :: Python :: 3.5" ,
39
- "Programming Language :: Python :: 3.6" ,
40
38
"Programming Language :: Python :: 3.7" ,
41
39
"Programming Language :: Python :: 3.8" ,
42
40
"Programming Language :: Python :: 3.9" ,
41
+ "Programming Language :: Python :: 3.10" ,
43
42
],
44
43
keywords = "sphinx numpy" ,
45
44
author = "Pauli Virtanen and others" ,
46
45
47
46
url = "https://numpydoc.readthedocs.io" ,
48
47
license = "BSD" ,
49
48
install_requires = ["sphinx >= 1.6.5" , 'Jinja2>=2.3' ],
50
- python_requires = ">=3.5 " ,
49
+ python_requires = ">=3.7 " ,
51
50
extras_require = {
52
51
"testing" : [
53
52
req for req in read ('test_requirements.txt' ).split ('\n ' )
0 commit comments