Skip to content

Commit 680234b

Browse files
committed
fix #209: workaround incompatibility between jupyter_client 6 and ipykernel <5.2
1 parent 8524466 commit 680234b

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

condarecipe/larray-editor/meta.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,12 @@ requirements:
2424
# requires larray >= 0.32 because of the LArray -> Array rename
2525
- larray >=0.32
2626
- matplotlib
27-
# - excluded versions 5.0 and 5.1.0 of ipykernel because these versions make the console useless after any exception
28-
# https://github.com/larray-project/larray-editor/issues/166
27+
# excluded versions 5.0 and 5.1.0 of ipykernel because these versions make the console useless after any exception
28+
# https://github.com/larray-project/larray-editor/issues/166
2929
- ipykernel !=5.0,!=5.1.0
30+
# jupyter_client >=6.0 is incompatible with ipykernel <5.2 but ipykernel 5.2 is not available yet on anaconda
31+
# https://github.com/larray-project/larray-editor/issues/209
32+
- jupyter_client <6
3033
- pyqt >=4.6 # for API v2
3134
- qtpy
3235

doc/source/changes/version_0_33.rst.inc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. py:currentmodule:: larray_editor
1+
.. py:currentmodule:: larray_editor
22

33
Syntax changes
44
^^^^^^^^^^^^^^
@@ -39,3 +39,6 @@ Fixes
3939
^^^^^
4040

4141
* workaround incompatibility with Python3.8 on Windows (closes :editor_issue:`208`).
42+
43+
* workaround incompatibility between two of our dependencies versions preventing the editor to even start
44+
(closes :editor_issue:`209`).

0 commit comments

Comments
 (0)