Skip to content

Commit ca27c15

Browse files
authored
Merge pull request #801 from bashtage/set-minimum-python-version
MAINT: Set minimum versions
2 parents 214c821 + 6bf1ae2 commit ca27c15

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[bdist_wheel]
2-
universal = 1
3-
41
[versioneer]
52
VCS = git
63
style = pep440

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,10 @@ def readme():
3636
"Intended Audience :: Science/Research",
3737
"Operating System :: OS Independent",
3838
"Programming Language :: Python",
39-
"Programming Language :: Python :: 2",
40-
"Programming Language :: Python :: 2.7",
4139
"Programming Language :: Python :: 3",
42-
"Programming Language :: Python :: 3.5",
4340
"Programming Language :: Python :: 3.6",
4441
"Programming Language :: Python :: 3.7",
42+
"Programming Language :: Python :: 3.8",
4543
"Topic :: Scientific/Engineering",
4644
],
4745
keywords="data",
@@ -50,5 +48,5 @@ def readme():
5048
test_suite="tests",
5149
tests_require=tests_require,
5250
zip_safe=False,
53-
python_requires=">=3.5",
51+
python_requires=">=3.6",
5452
)

0 commit comments

Comments
 (0)