File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,11 @@ class WheelsBuildError(WheelsError):
45
45
# FIXME: ipykernel max ver added for macOS 10.13 compatibility, min taken
46
46
# from qtconsole 4.7.7. This is mirrored in setup.py
47
47
("ipykernel" , "ipykernel>=4.1,<6" ),
48
+ # FIXME: ipykernel<6 depends on ipython_genutils, but it isn't explicitly
49
+ # declared as a dependency. It also depends on traitlets, which
50
+ # incidentally brought ipython_genutils, but in v5.1 it was dropped, so as
51
+ # a workaround we need to manually specify it here
52
+ ("ipython_genutils" , "ipython_genutils>=0.2.0" ),
48
53
("esptool" , "esptool==3.*" ),
49
54
]
50
55
Original file line number Diff line number Diff line change 38
38
# qtconsole 4.7.7. Full line can be removed after Mu v1.1 release.
39
39
# Dependency mirrored for user venv in mu/wheels/__init__.py
40
40
"ipykernel>=4.1,<6" ,
41
+ # FIXME: ipykernel<6 depends on ipython_genutils, but it isn't explicitly
42
+ # declared as a dependency. It also depends on traitlets, which
43
+ # incidentally brought ipython_genutils, but in v5.1 it was dropped, so as
44
+ # a workaround we need to manually specify it here.
45
+ "ipython_genutils>=0.2.0" ,
41
46
"qtconsole==4.7.7" ,
42
47
#
43
48
# adafruit-board-toolkit is used to find serial ports and help identify
You can’t perform that action at this time.
0 commit comments