Skip to content

Commit 7a78f85

Browse files
committed
Fix conflict with standard library for typing dependency
1 parent 844c18c commit 7a78f85

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

requirements.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55

66
# Requirements
77
requests>=2.21,<3.0
8-
typing>=3.6,<4.0
8+
9+
# Typing is included in the Python standard library as of 3.5
10+
# See - https://docs.python.org/3/library/typing.html
11+
typing>=3.6,<4.0; python_version < '3.5'
912

1013
# Dev requirements
1114
-r requirements/requirements-testing.txt

0 commit comments

Comments
 (0)