larray-project / larray-editor

Graphical User Interface for LArray
GNU General Public License v3.0
2 stars 2 forks source link

require ipykernel < 5 #166

Closed gdementen closed 5 years ago

gdementen commented 5 years ago

There is currently an issue with ipykernel >= 5.0 which makes the console useless after any exception. See: https://github.com/ipython/ipykernel/issues/370

>>> a = yada
NameError: name 'yada' is not defined
>>> a = 1
ERROR: execution aborted
alixdamman commented 5 years ago

Sounds like the problem has been fixed but we need to wait for 5.2 version release: https://github.com/ipython/ipykernel/pull/376

gdementen commented 5 years ago

now that ipykernel 5.1.1 was released (and apparently contains the fix in ipython/ipykernel#376), we could change the restriction to something like <5 or >=5.1.1 (I don't know what is the syntax for that though)