Skip to content
Snippets Groups Projects
Commit 12e48fa3 authored by marc131183's avatar marc131183
Browse files

changed python version requirements for 3.6

parent fe5c654a
No related branches found
No related tags found
1 merge request!4Develop marc
Pipeline #33888 passed
...@@ -26,7 +26,7 @@ setup( ...@@ -26,7 +26,7 @@ setup(
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
], ],
python_requires=">=3.7", python_requires=">=3.6",
packages=find_packages("src"), packages=find_packages("src"),
package_dir={"": "src"}, package_dir={"": "src"},
zip_safe=True, zip_safe=True,
......
...@@ -12,4 +12,5 @@ from robofish.io.io import * ...@@ -12,4 +12,5 @@ from robofish.io.io import *
import robofish.io.app import robofish.io.app
assert (3, 7) <= sys.version_info < (4, 0), "Unsupported Python version" if not ((3, 7) <= sys.version_info < (4, 0)):
logging.warning("Unsupported Python version")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment