Skip to content

Commit 47e58a3

Browse files
authored
Merge pull request #7 from eatfirst/typing-fix
Only install typing on python < 3.5
2 parents bc11f1a + ef66068 commit 47e58a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ def read(*names, **kwargs):
5353
keywords=[
5454
# eg: 'keyword1', 'keyword2', 'keyword3',
5555
],
56-
install_requires=["pytz", "typing"],
56+
install_requires=["pytz", "typing;python_version<\"3.5\""],
5757
extras_require={"graph": ["graphviz >= 0.8.1"], "redis": ["redis >= 2.10"]},
5858
)

0 commit comments

Comments
 (0)