Bumped Python version requirement to oldest supported

This commit is contained in:
Krateng 2021-01-16 17:25:52 +01:00
parent 06c32e205e
commit 49b0a57581
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ links = {
"pypi":"malojaserver",
"github":"maloja"
}
python_version = ">=3.6"
requires = [
"bottle>=0.12.16",
"waitress>=1.3",

View File

@ -45,7 +45,7 @@ setuptools.setup(
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.5",
python_requires=pkginfo.get("python_version"),
install_requires=pkginfo.get("requires",[]),
package_data={'': pkginfo.get("resources",[])},
include_package_data=True,