Skip to content

Commit

Permalink
Fix ipython version for python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
d1618033 authored and gotcha committed Mar 2, 2021
1 parent d279961 commit 95b7159
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@
extras_require={
':python_version == "2.7"': ['ipython >= 5.1.0, < 6.0.0'],
# No support for python 3.0, 3.1, 3.2.
':python_version >= "3.4"': ['ipython >= 5.1.0'],
':python_version == "3.4"': ['ipython >= 6.0.0, < 7.0.0'],
':python_version == "3.5"': ['ipython >= 7.0.0, < 7.10.0'],
':python_version == "3.6"': ['ipython >= 7.10.0, < 7.17.0'],
':python_version > "3.6"': ['ipython >= 7.17.0'],
},
tests_require=[
'mock'
Expand Down

0 comments on commit 95b7159

Please sign in to comment.