From a194fe87f3b9c42138f70c21426e2fd3a9311b60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Tue, 27 Jun 2023 15:32:37 +0200 Subject: [PATCH] minor: fix minimal tutor version --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index fd75632..1e8b24e 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def load_about(): long_description_content_type="text/x-rst", packages=find_packages(exclude=["tests*"]), include_package_data=True, - python_requires=">=3.5", + python_requires=">=3.8", install_requires=["tutor>=16.0.0,<17.0.0"], entry_points={"tutor.plugin.v1": ["mfe = tutormfe.plugin"]}, classifiers=[ @@ -48,11 +48,9 @@ def load_about(): "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], )