mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00
the edge of jedi==0.14.0 is too sharp
This commit is contained in:
parent
4e7d56a7d9
commit
63c55076cf
2 changed files with 4 additions and 4 deletions
|
@ -51,7 +51,7 @@ install:
|
||||||
eval "$(pyenv init -)" ;
|
eval "$(pyenv init -)" ;
|
||||||
pyenv activate $TOXENV ;
|
pyenv activate $TOXENV ;
|
||||||
fi
|
fi
|
||||||
- pip install jupyter ipython\<=$IPYTHON
|
- pip install jupyter ipython\<=$IPYTHON jedi\<=0.13.3
|
||||||
- pip install numpy
|
- pip install numpy
|
||||||
- pip install matplotlib
|
- pip install matplotlib
|
||||||
- |
|
- |
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -65,7 +65,7 @@ quick: test-compile test-unit
|
||||||
test-jupyterhub:
|
test-jupyterhub:
|
||||||
# jupyterhub slightly temperamental with json-readtable-error
|
# jupyterhub slightly temperamental with json-readtable-error
|
||||||
# seems to be affecting ob-ipython too but probably my bug.. just need to find it
|
# seems to be affecting ob-ipython too but probably my bug.. just need to find it
|
||||||
-cask exec ecukes --tags @jupyterhub
|
-cask exec ecukes --tags @jupyterhub --reporter magnars
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
test: quick test-int test-poly
|
test: quick test-int test-poly
|
||||||
|
@ -74,12 +74,12 @@ test: quick test-int test-poly
|
||||||
test-poly:
|
test-poly:
|
||||||
cask exec ert-runner -L ./lisp -L ./test -l test/testfunc.el test/test-poly.el test/test-func.el
|
cask exec ert-runner -L ./lisp -L ./test -l test/testfunc.el test/test-poly.el test/test-func.el
|
||||||
cp test/test-poly.el features/support/test-poly.el
|
cp test/test-poly.el features/support/test-poly.el
|
||||||
cask exec ecukes; (ret=$$? ; rm -f features/support/test-poly.el && exit $$ret)
|
cask exec ecukes --reporter magnars ; (ret=$$? ; rm -f features/support/test-poly.el && exit $$ret)
|
||||||
|
|
||||||
.PHONY: test-int
|
.PHONY: test-int
|
||||||
test-int:
|
test-int:
|
||||||
cask exec ert-runner -L ./lisp -L ./test -l test/testfunc.el test/test-func.el
|
cask exec ert-runner -L ./lisp -L ./test -l test/testfunc.el test/test-func.el
|
||||||
cask exec ecukes
|
cask exec ecukes --reporter magnars
|
||||||
|
|
||||||
.PHONY: test-unit
|
.PHONY: test-unit
|
||||||
test-unit:
|
test-unit:
|
||||||
|
|
Loading…
Add table
Reference in a new issue