Support Python 3.5 and higher.

See https://github.com/jensengroup/propka-3.1/pull/36#discussion_r429094884
This commit is contained in:
Nathan Baker
2020-05-22 20:39:22 -07:00
parent 03e12ae15c
commit 48f69eb544
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ from within a virtual environment (e.g., via [virtualenv](https://pypi.org/proje
## Requirements ## Requirements
* Python 3.1 or higher * Python 3.5 or higher
## Getting started ## Getting started

View File

@@ -56,6 +56,6 @@ See http://propka.org/ for the PROPKA web server.
], ],
}, },
zip_safe=True, zip_safe=True,
python_requires='>=3', python_requires='>=3.5',
test_suite="tests", test_suite="tests",
) )