From 90c9f8b2875f4c5cf9b0cea46a94145ddab82489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <henrik@trineo.org> Date: Thu, 18 Jun 2020 08:12:07 +0200 Subject: [PATCH] DOC: specify minimum python version --- README_SETUP.md | 1 + setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README_SETUP.md b/README_SETUP.md index a172a878..29035010 100644 --- a/README_SETUP.md +++ b/README_SETUP.md @@ -1,4 +1,5 @@ # Installation +python3.6 is required. pip install . --user pip install tox --user diff --git a/setup.py b/setup.py index 8893a126..f3c2c11b 100755 --- a/setup.py +++ b/setup.py @@ -155,6 +155,7 @@ def setup_package(): author='Timm Fitschen', author_email='t.fitschen@indiscale.com', packages=find_packages('src'), + python_requires='>=3.6', package_dir={'': 'src'}, install_requires=['lxml>=3.6.4', 'PyYaml>=3.12', 'future', 'PySocks>=1.6.7'], diff --git a/tox.ini b/tox.ini index 97f77537..f9776382 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py34, py35, py36, py37, py38 +envlist=py36, py37, py38 skip_missing_interpreters = true [testenv] -- GitLab