mirror of
https://github.com/clearml/clearml-agent
synced 2025-02-24 21:24:36 +00:00
Add condition to requirements for typing package (python < 3.5) (#103)
- According to the maintainer of the typing package, it is recommended to use the typing package with condition for python version since for python3.5 and later typing package is useless (as it is in the stdlib). - Typing package can cause some issues so NOT installing it can solve some of them. Co-authored-by: Jan Stratil <jan.stratil@innovatrics.com>
This commit is contained in:
parent
f58071fc74
commit
966a9758b8
@ -12,6 +12,6 @@ pyjwt>=1.6.4,<2.1.0
|
|||||||
PyYAML>=3.12,<5.5.0
|
PyYAML>=3.12,<5.5.0
|
||||||
requests>=2.20.0,<2.26.0
|
requests>=2.20.0,<2.26.0
|
||||||
six>=1.13.0,<1.16.0
|
six>=1.13.0,<1.16.0
|
||||||
typing>=3.6.4,<3.8.0
|
typing>=3.6.4,<3.8.0 ; python_version < '3.5'
|
||||||
urllib3>=1.21.1,<1.27.0
|
urllib3>=1.21.1,<1.27.0
|
||||||
virtualenv>=16,<21
|
virtualenv>=16,<21
|
||||||
|
Loading…
Reference in New Issue
Block a user