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

PR: Group kernel config calls (IPython console) #21320

Merged
merged 68 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
68 commits
Select commit Hold shift + click to select a range
f592a9a
cwd + namespace view
Sep 9, 2023
367ad52
pdb conf
Sep 9, 2023
e6fb0f2
faulthandler, mpl backend, special_kernel
Sep 9, 2023
d2a56ee
color scheme
Sep 9, 2023
99c7420
don't send the same config several times
Sep 9, 2023
5a72041
publish after changing view
Sep 9, 2023
a4f9678
remove setup kernel
Sep 9, 2023
29540c3
fix callback
Sep 9, 2023
2612389
matplotlib and completer
Sep 10, 2023
b7e88fd
use kernel infos
Sep 10, 2023
66e7fde
typo
Sep 10, 2023
b150b48
faster startup
Sep 10, 2023
7e5fa4d
reset after crash
Sep 10, 2023
c4e8058
Merge remote-tracking branch 'upstream/master' into group_config_calls
Sep 12, 2023
da62260
git subrepo clone (merge) --branch=group_config_calls --force https:/…
Sep 12, 2023
cac46f2
Merge branch 'master' into group_config_calls
impact27 Sep 14, 2023
60ceb1d
Merge branch 'master' into group_config_calls
impact27 Sep 15, 2023
9ae6683
Merge branch 'master' into group_config_calls
impact27 Sep 16, 2023
5ec4901
fix handlers copy
Sep 16, 2023
24810c5
Changing length
Sep 16, 2023
5f1d7b9
matplotlib & special
Sep 16, 2023
2bbf3b4
fix loading
Sep 16, 2023
2a17d0e
Merge branch 'matplotlibconf' into group_config_calls
Sep 16, 2023
563d6a2
set_special_kernel
Sep 16, 2023
fb57194
fix matplotlib
Sep 16, 2023
79055c7
fix sympy background
Sep 16, 2023
0796479
enable cython
Sep 16, 2023
114ac98
Merge remote-tracking branch 'upstream/master' into group_config_calls
Sep 16, 2023
ead7fe7
fix test
Sep 16, 2023
4a5e0e4
git subrepo clone --branch=group_config_calls --force https://github.…
Sep 16, 2023
55d802e
fix more tests
Sep 16, 2023
874bd18
move special kernel
Sep 16, 2023
b7c6a99
fix test
Sep 16, 2023
d43d513
fix more tests
Sep 16, 2023
3be26cc
fix test
Sep 16, 2023
3bfb40e
git subrepo clone --branch=group_config_calls --force https://github.…
Sep 16, 2023
99833c8
Merge remote-tracking branch 'upstream/master' into group_config_calls
Sep 16, 2023
9139d36
fix dev versions of spyder-kernels
Sep 17, 2023
912f2b8
more delayed conf
Sep 17, 2023
2e5de5d
Only use wurlitzer if needed
Sep 17, 2023
aa945bb
disable autoreload
Sep 17, 2023
c3fb452
disable autoreload
Sep 18, 2023
d770154
Merge branch 'master' into group_config_calls
Sep 21, 2023
55c5d12
increase windows shell timeout
Sep 21, 2023
06a148b
pep8
Sep 22, 2023
9449da6
correct special
Sep 23, 2023
067d6a8
call it conf
Sep 26, 2023
70b08cf
Merge branch 'master' into group_config_calls
Nov 11, 2023
b3b8eb4
update config
Nov 12, 2023
4512721
qdark
Nov 12, 2023
9241211
Revert "qdark"
Nov 12, 2023
eb6588d
Merge remote-tracking branch 'upstream/master' into group_config_calls
Nov 12, 2023
3b02774
git subrepo clone --branch=group_config_calls --force https://github.…
Nov 12, 2023
6ffb578
Apply suggestions from code review
impact27 Nov 12, 2023
0d7ffcd
git subrepo clone --branch=group_config_calls --force https://github.…
Nov 12, 2023
880dd87
qt5 to qt
Nov 12, 2023
9e3fac0
Merge remote-tracking branch 'origin/group_config_calls' into group_c…
Nov 12, 2023
0eba8fc
nt
Nov 12, 2023
bf2fcc1
fix interactive logic
Nov 12, 2023
f9dc7aa
fix typo
Nov 12, 2023
8d154b1
use safe exec
Nov 13, 2023
0d50336
git subrepo clone --branch=group_config_calls --force https://github.…
Nov 13, 2023
c659997
git subrepo clone --branch=group_config_calls --force https://github.…
Nov 13, 2023
8a204ae
special_kernel_error
Nov 13, 2023
9c07bc8
CI: Install subrepo version of Spyder-kernels in env used to test act…
ccordoba12 Nov 14, 2023
1096e8e
git subrepo clone --branch=group_config_calls --force https://github.…
Nov 15, 2023
78d2442
Merge remote-tracking branch 'upstream/master' into group_config_calls
Nov 15, 2023
9f64ff3
git subrepo pull (merge) --remote=https://github.com/spyder-ide/spyde…
ccordoba12 Nov 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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