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:
Jan Stratil 2022-03-23 14:03:37 +01:00 committed by GitHub
parent f58071fc74
commit 966a9758b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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