Skip to content
Snippets Groups Projects
Commit fa5187b7 authored by Régis Behmo's avatar Régis Behmo
Browse files

Python 3.5 compatibility

After all, we don't use any 3.6-specific feature, so should just support
all major python 3 versions.
parent ddbcedab
Branches
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ setup( ...@@ -28,7 +28,7 @@ setup(
long_description=readme, long_description=readme,
packages=["tutor"], packages=["tutor"],
include_package_data=True, include_package_data=True,
python_requires=">=3.6", python_requires=">=3.5",
install_requires=[ install_requires=[
"appdirs", "appdirs",
"click>=7.0", "click>=7.0",
...@@ -48,6 +48,7 @@ setup( ...@@ -48,6 +48,7 @@ setup(
"License :: OSI Approved :: GNU Affero General Public License v3", "License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
], ],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment