77
88from numpydoc import __version__ as version
99
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." )
1212
1313
1414def read (fname ):
@@ -35,19 +35,18 @@ def read(fname):
3535 "Topic :: Documentation" ,
3636 "Programming Language :: Python" ,
3737 "Programming Language :: Python :: 3" ,
38- "Programming Language :: Python :: 3.5" ,
39- "Programming Language :: Python :: 3.6" ,
4038 "Programming Language :: Python :: 3.7" ,
4139 "Programming Language :: Python :: 3.8" ,
4240 "Programming Language :: Python :: 3.9" ,
41+ "Programming Language :: Python :: 3.10" ,
4342 ],
4443 keywords = "sphinx numpy" ,
4544 author = "Pauli Virtanen and others" ,
4645 author_email = "pav@iki.fi" ,
4746 url = "https://numpydoc.readthedocs.io" ,
4847 license = "BSD" ,
4948 install_requires = ["sphinx >= 1.6.5" , 'Jinja2>=2.3' ],
50- python_requires = ">=3.5 " ,
49+ python_requires = ">=3.7 " ,
5150 extras_require = {
5251 "testing" : [
5352 req for req in read ('test_requirements.txt' ).split ('\n ' )
0 commit comments