Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

install ipykernel as an optional dependency on CI #7629

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 2 additions & 5 deletions buildscripts/incremental/setup_conda_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ set -v
# Install optional packages into activated env
if [ "${VANILLA_INSTALL}" != "yes" ]; then
# Scipy, CFFI, jinja2, IPython, ipython_genutils and pygments are optional dependencies, but exercised in the test suite
# pexpect is used to run the
$CONDA_INSTALL ${EXTRA_CHANNELS} cffi jinja2 ipython ipython_genutils pygments pexpect
# pexpect is used to run the gdb tests
$CONDA_INSTALL ${EXTRA_CHANNELS} cffi jinja2 ipython ipykernel ipython_genutils pygments pexpect
# Only install scipy on 64bit, else it'll pull in NumPy, 32bit linux needs
# to get scipy from pip
if [[ "$CONDA_SUBDIR" != "linux-32" && "$BITS32" != "yes" ]] ; then
Expand Down Expand Up @@ -84,9 +84,6 @@ fi
# Install latest llvmlite build
$CONDA_INSTALL -c numba/label/dev llvmlite

# Install latest ipykernel for testing
$CONDA_INSTALL ipykernel

# Install dependencies for building the documentation
if [ "$BUILD_DOC" == "yes" ]; then $CONDA_INSTALL sphinx=2.4.4 docutils=0.17 sphinx_rtd_theme pygments numpydoc; fi
if [ "$BUILD_DOC" == "yes" ]; then $PIP_INSTALL rstcheck; fi
Expand Down