From cfa90ac7f47ef52239bea44854d23c7cf4e0a4ae Mon Sep 17 00:00:00 2001 From: Terry Zhuo <36221214+terryyz@users.noreply.github.com> Date: Thu, 9 Jul 2020 02:37:44 +1000 Subject: [PATCH] chore: add Python version checking (#195) chore: add python version checking --- Pipfile | 4 ++++ setup.py | 1 + 2 files changed, 5 insertions(+) diff --git a/Pipfile b/Pipfile index 2403c06..a3b0166 100644 --- a/Pipfile +++ b/Pipfile @@ -10,3 +10,7 @@ httpx = "==0.13.3" coveralls = "*" "pytest-watch" = "*" "pytest-testmon" = "*" + +[requires] + +python_version = ">=3.6" diff --git a/setup.py b/setup.py index c80e84e..a3fe64c 100644 --- a/setup.py +++ b/setup.py @@ -60,6 +60,7 @@ def install(): install_requires=[ 'httpx==0.13.3', ], + python_requires= '>=3.6', tests_require=[ 'pytest', 'coveralls',