Require Python 3.6+.

Fixes https://github.com/jensengroup/propka-3.1/pull/61#issuecomment-646190977
This commit is contained in:
Nathan Baker
2020-06-19 07:21:05 -07:00
parent 77286be67a
commit 11bc32e9fc
2 changed files with 2 additions and 3 deletions

View File

@@ -45,7 +45,6 @@ See http://propka.org/ for the PROPKA web server.
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
@@ -56,7 +55,7 @@ See http://propka.org/ for the PROPKA web server.
package_data={'propka': ['*.dat', '*.cfg', '*.json']},
entry_points={'console_scripts': ['propka3 = propka.run:main', ]},
zip_safe=True,
python_requires='>=3.5',
python_requires='>=3.6',
tests_require=["pandas", "numpy", "pytest"],
test_suite="tests",
)