Skip to content

Commit

Permalink
Add toml to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrebarbaruiva authored and gotcha committed Mar 8, 2021
1 parent 6ec7c0b commit 144f241
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,15 @@
'setuptools'
],
extras_require={
':python_version == "2.7"': ['ipython >= 5.1.0, < 6.0.0'],
':python_version == "2.7"': [
'ipython >= 5.1.0, < 6.0.0',
'toml >= 0.10.2'
],
# No support for python 3.0, 3.1, 3.2.
':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'],
':python_version == "3.4"': ['ipython >= 6.0.0, < 7.0.0', 'toml >= 0.10.2'],
':python_version == "3.5"': ['ipython >= 7.0.0, < 7.10.0', 'toml >= 0.10.2'],
':python_version == "3.6"': ['ipython >= 7.10.0, < 7.17.0', 'toml >= 0.10.2'],
':python_version > "3.6"': ['ipython >= 7.17.0', 'toml >= 0.10.2'],
},
tests_require=[
'mock'
Expand Down

0 comments on commit 144f241

Please sign in to comment.