fix dependencies for different python versions

This commit is contained in:
Robert Kaussow 2020-03-07 14:40:52 +01:00
parent c5e94fae7a
commit 95d7cb820d
3 changed files with 3 additions and 5 deletions

View File

@ -25,7 +25,7 @@ autopep8 = "*"
yapf = "*" yapf = "*"
[packages] [packages]
zipp = {version = "<2.0.0",markers = "python_version=='3.5'"} zipp = "<2.0.0"
importlib-metadata = {version = "*",markers = "python_version<'3.8'"} importlib-metadata = {version = "*",markers = "python_version<'3.8'"}
certifi = "*" certifi = "*"
chardet = "*" chardet = "*"

4
Pipfile.lock generated
View File

@ -1,7 +1,7 @@
{ {
"_meta": { "_meta": {
"hash": { "hash": {
"sha256": "9b5892b0ef3fe738ca351da51bd6db18e687fa5389d70342433e1d3f8034bb11" "sha256": "bf5cf1a93672e4870e15ed4800cde2558d3915c10d294353e6e4c28c4e14524e"
}, },
"pipfile-spec": 6, "pipfile-spec": 6,
"requires": {}, "requires": {},
@ -244,7 +244,6 @@
"sha256:e0d9e63797e483a30d27e09fffd308c59a700d365ec34e93cc100844168bf921" "sha256:e0d9e63797e483a30d27e09fffd308c59a700d365ec34e93cc100844168bf921"
], ],
"index": "pypi", "index": "pypi",
"markers": "python_version == '3.5'",
"version": "==1.2.0" "version": "==1.2.0"
} }
}, },
@ -977,7 +976,6 @@
"sha256:e0d9e63797e483a30d27e09fffd308c59a700d365ec34e93cc100844168bf921" "sha256:e0d9e63797e483a30d27e09fffd308c59a700d365ec34e93cc100844168bf921"
], ],
"index": "pypi", "index": "pypi",
"markers": "python_version == '3.5'",
"version": "==1.2.0" "version": "==1.2.0"
} }
} }

View File

@ -90,7 +90,7 @@ setup(
"six==1.14.0", "six==1.14.0",
"urllib3==1.25.8", "urllib3==1.25.8",
"websocket-client==0.57.0", "websocket-client==0.57.0",
"zipp==1.2.0; python_version == '3.5'", "zipp==1.2.0",
], ],
dependency_links=[], dependency_links=[],
setup_requires=["setuptools_scm"], setup_requires=["setuptools_scm"],