Skip to content

Commit fb1a6c2

Browse files
committed
Update minimum python version
1 parent 4e7f85a commit fb1a6c2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

setup.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers =
1515
Programming Language :: Python :: 3
1616
Programming Language :: Python :: 3.6
1717
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: 3.8
1819
Programming Language :: Python :: Implementation :: CPython
1920
Topic :: Scientific/Engineering :: Astronomy
2021
Topic :: Scientific/Engineering :: Physics
@@ -23,7 +24,7 @@ classifiers =
2324
zip_safe = False
2425
include_package_data = True
2526
packages = find:
26-
python_requires = >=3.5
27+
python_requires = >=3.6
2728
setup_requires =
2829
setuptools_scm
2930
install_requires =

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup
44

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')
77

88
setup(use_scm_version=True)

0 commit comments

Comments
 (0)