Skip to content

Commit cc6c171

Browse files
Add upper bound to dependency versions (#714)
* 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 <[email protected]> Co-authored-by: David Brochart <[email protected]>
1 parent 36d6a91 commit cc6c171

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ def run(self):
7575
python_requires='>=3.7',
7676
install_requires=[
7777
'importlib-metadata<4;python_version<"3.8.0"',
78-
'debugpy>=1.0.0',
79-
'ipython>=7.23.1',
80-
'traitlets>=4.1.0',
81-
'jupyter_client',
82-
'tornado>=4.2',
78+
'debugpy>=1.0.0,<2.0',
79+
'ipython>=7.23.1,<8.0',
80+
'traitlets>=4.1.0,<6.0',
81+
'jupyter_client<7.0',
82+
'tornado>=4.2,<7.0',
8383
'matplotlib-inline>=0.1.0,<0.2.0',
8484
'appnope;platform_system=="Darwin"',
8585
],

0 commit comments

Comments
 (0)