Skip to content

Commit

Permalink
deps: Install typing only on < 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
rht committed Dec 15, 2018
1 parent a2f3fd4 commit 74b51bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ url = "https://pypi.python.org/simple"
name = "pypi"

[packages]
typing = "==3.6.4"
typing = {version="==3.6.4", markers="python_version < '3.5'"}
urwid = "==2.0.1"
zulip = "==0.4.7"
emoji = "==0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
typing==3.6.4
typing==3.6.4; python_version < '3.5'
urwid==2.0.1
zulip==0.4.7
pytest==3.4.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def long_description():
},
tests_require=testing_deps,
install_requires=[
'typing==3.6.4',
"typing==3.6.4 : python_version < '3.5'",
'urwid==2.0.1',
'zulip==0.4.7',
'emoji==0.5.0',
Expand Down

0 comments on commit 74b51bb

Please sign in to comment.