Skip to content

Commit

Permalink
CI: Use 'python -m pip' to update pip. Remove jupyter_client=7.2.0 wo…
Browse files Browse the repository at this point in the history
…rkaround
  • Loading branch information
dalthviz committed May 12, 2022
1 parent 70f6a0b commit ba286ea
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,9 @@ if [ "$USE_CONDA" = "true" ]; then
fi
done

# Install jupyter_client 7.2.0 to prevent ZMQ Socket operation on non-socket
# Remove this when the issue is fixed upstream most probaly with jupyter_client=7.2.3
# See https://github.com/spyder-ide/spyder/issues/17615
mamba install jupyter_client=7.2.0 -c conda-forge -q -y
else
# Update pip and setuptools
pip install -U pip setuptools
python -m pip install -U pip setuptools

# Install Spyder and its dependencies from our setup.py
pip install -e .[test]
Expand All @@ -61,11 +57,6 @@ else
pip uninstall $dep -q -y
done

# Install jupyter_client 7.2.0 to prevent ZMQ Socket operation on non-socket
# Remove this when the issue is fixed upstream most probaly with jupyter_client=7.2.3
# See https://github.com/spyder-ide/spyder/issues/17615
pip install -q jupyter_client==7.2.0

# Remove Spyder to properly install it below
pip uninstall spyder -q -y
fi
Expand Down

0 comments on commit ba286ea

Please sign in to comment.