-
Notifications
You must be signed in to change notification settings - Fork 799
Closed
Description
Describe the current behavior
Currently supported versions of IPython and tornado are pretty old. Upgrading versions will fail, and it is not possible to run other packages that require newer versions of these packages (e.g. require IPython 7.33.0 and tornado 6.1). produce incompatibility errors and requires restarting runtime to make the new versions take into effect.
Lines 25 to 34 in 31fdaa9
'ipython~=5.5.0', | |
'notebook~=5.2.0; python_version < "3.0"', | |
'notebook~=5.3.0; python_version >= "3.0"', | |
'six~=1.15.0', | |
'pandas~=0.24.0; python_version < "3.0"', | |
'pandas>=1.1.0; python_version >= "3.0"', | |
'portpicker~=1.3.1', | |
'requests~=2.23.0', | |
'tornado~=4.5.0; python_version < "3.0"', | |
'tornado~=5.1.0; python_version >= "3.0"', |
Describe the expected behavior
I wonder if it would be possible to upgrade the support for the IPython version to >7.33.0 and tornado to > 6.1.
What web browser you are using
Chrome 101.0.4951.64 (arm64)
yonikremer and DanielHabenicht