Commit fb1a6c2 1 parent 4e7f85a commit fb1a6c2 Copy full SHA for fb1a6c2
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ classifiers =
15
15
Programming Language :: Python :: 3
16
16
Programming Language :: Python :: 3.6
17
17
Programming Language :: Python :: 3.7
18
+ Programming Language :: Python :: 3.8
18
19
Programming Language :: Python :: Implementation :: CPython
19
20
Topic :: Scientific/Engineering :: Astronomy
20
21
Topic :: Scientific/Engineering :: Physics
@@ -23,7 +24,7 @@ classifiers =
23
24
zip_safe = False
24
25
include_package_data = True
25
26
packages = find:
26
- python_requires = >=3.5
27
+ python_requires = >=3.6
27
28
setup_requires =
28
29
setuptools_scm
29
30
install_requires =
Original file line number Diff line number Diff line change 2
2
3
3
from setuptools import setup
4
4
5
- if sys .version_info < (3 , 5 ):
6
- raise Exception ('python 3.5 or newer is required' )
5
+ if sys .version_info < (3 , 6 ):
6
+ raise Exception ('python 3.6 or newer is required' )
7
7
8
8
setup (use_scm_version = True )
You can’t perform that action at this time.
0 commit comments