Skip to content

Commit

Permalink
Merge pull request #21320 from impact27/group_config_calls
Browse files Browse the repository at this point in the history
PR: Group kernel config calls (IPython console)
  • Loading branch information
ccordoba12 authored Nov 16, 2023
2 parents e586ff8 + 9f64ff3 commit 193a59f
Show file tree
Hide file tree
Showing 30 changed files with 653 additions and 653 deletions.
11 changes: 8 additions & 3 deletions .github/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,18 @@ conda list -n jedi-test-env
# Create environment to test conda env activation before launching a kernel
conda create -n spytest-ž -q -y -c conda-forge python=3.9

# `conda run` fails on Windows without a clear reason
# Install subrepo version of Spyder-kernels in that env
pushd external-deps/spyder-kernels

if [ "$OS" = "win" ]; then
/c/Miniconda/envs/spytest-ž/python -m pip install git+https://github.com/spyder-ide/spyder-kernels.git@master
# `conda run` fails on Windows without a clear reason
/c/Miniconda/envs/spytest-ž/python -m pip install .
else
conda run -n spytest-ž python -m pip install git+https://github.com/spyder-ide/spyder-kernels.git@master
conda run -n spytest-ž python -m pip install .
fi

popd

conda list -n spytest-ž

# Install pyenv on Linux systems
Expand Down
4 changes: 2 additions & 2 deletions external-deps/spyder-kernels/.gitrepo

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions external-deps/spyder-kernels/spyder_kernels/comms/utils.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 193a59f

Please sign in to comment.