chore: add Python version checking (#195)

chore: add python version checking
This commit is contained in:
Terry Zhuo 2020-07-09 02:37:44 +10:00 committed by GitHub
parent 34b81cce94
commit cfa90ac7f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -10,3 +10,7 @@ httpx = "==0.13.3"
coveralls = "*"
"pytest-watch" = "*"
"pytest-testmon" = "*"
[requires]
python_version = ">=3.6"

View File

@ -60,6 +60,7 @@ def install():
install_requires=[
'httpx==0.13.3',
],
python_requires= '>=3.6',
tests_require=[
'pytest',
'coveralls',