Skip to content

Commit

Permalink
Add upper bound to dependency versions (#714)
Browse files Browse the repository at this point in the history
* Add upper bound to dependency versions

This might save us from some troubles if a major release of one of those
dependency arrives (thinking of jupyter-client 7.0 coming)

* Update setup.py

Co-authored-by: David Brochart <david.brochart@gmail.com>

Co-authored-by: David Brochart <david.brochart@gmail.com>
  • Loading branch information
martinRenou and davidbrochart authored Jul 15, 2021
1 parent 36d6a91 commit cc6c171
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ def run(self):
python_requires='>=3.7',
install_requires=[
'importlib-metadata<4;python_version<"3.8.0"',
'debugpy>=1.0.0',
'ipython>=7.23.1',
'traitlets>=4.1.0',
'jupyter_client',
'tornado>=4.2',
'debugpy>=1.0.0,<2.0',
'ipython>=7.23.1,<8.0',
'traitlets>=4.1.0,<6.0',
'jupyter_client<7.0',
'tornado>=4.2,<7.0',
'matplotlib-inline>=0.1.0,<0.2.0',
'appnope;platform_system=="Darwin"',
],
Expand Down

0 comments on commit cc6c171

Please sign in to comment.