Skip to content

Commit 2e25f9e

Browse files
committed
Fixing CI
1 parent b7583cb commit 2e25f9e

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Install jupyterlab_widgets
4444
run: |
4545
cd python/jupyterlab_widgets
46-
pip install -vv -e . --no-deps
46+
pip install -vv . --no-deps
4747
4848
- name: Install widgetsnbextension
4949
run: |

.github/workflows/packaging.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
fail-fast: false
8484
matrix:
8585
os: [ubuntu, windows]
86-
python: ['3.8', '3.13']
86+
python: ['3.9', '3.13']
8787
dist: ['ipywidgets*.tar.gz']
8888
include:
8989
- python: '3.13'

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
strategy:
7878
max-parallel: 4
7979
matrix:
80-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
80+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
8181

8282
steps:
8383
- uses: actions/checkout@v4
@@ -160,7 +160,7 @@ jobs:
160160
jlpm build
161161
cd python/jupyterlab_widgets
162162
pwd
163-
pip install -e .
163+
pip install .
164164
jupyter labextension develop . --overwrite
165165
jupyter labextension list
166166

dev-install.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ pip install -v -e "./python/ipywidgets[test]"
4747
if test "$skip_jupyter_lab" != yes; then
4848
echo -n "jupyterlab_ipywidgets"
4949
pip install jupyter_packaging
50-
pip install -ve ./python/jupyterlab_widgets
51-
jupyter labextension develop ./python/jupyterlab_widgets --overwrite
50+
51+
pushd ./python/jupyterlab_widgets
52+
pip install .
53+
jupyter labextension develop . --overwrite
54+
popd
5255
fi

0 commit comments

Comments
 (0)