diff --git a/appveyor.yml b/appveyor.yml index 768b7d1dfaf..752b57ed07a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -47,8 +47,6 @@ install: - "conda install jupyter_client=5.2.2" # Fix problems with latest pyqt - "conda install pyqt=5.6*" - # Fix test issues with the latest jedi 0.12 for now - - "conda install jedi=0.11.1" build: false diff --git a/continuous_integration/travis/install.sh b/continuous_integration/travis/install.sh index c68527d20bf..60ca8bae6d0 100755 --- a/continuous_integration/travis/install.sh +++ b/continuous_integration/travis/install.sh @@ -36,16 +36,10 @@ if [ "$TRAVIS_PYTHON_VERSION" = "3.5" ] && [ "$USE_PYQT" = "pyqt5" ]; then # Fix connection to external kernels pip install jupyter-client==5.2.2 - - # Avoid test failures with the latest jedi 0.12 for now - pip install jedi==0.11.1 else # Run with tornado < 5.0 to avoid hangs conda install tornado=4.5.3 # Fix connection to external kernels conda install jupyter_client=5.2.2 - - # Avoid test failures with the latest jedi 0.12 for now - conda install jedi=0.11.1 fi