Skip to content

Commit 2c196d9

Browse files
authored
Fix install step in CI (#1139)
* fix install in CI * pre-commit
1 parent 342bb7b commit 2c196d9

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

scripts/install.sh

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
#!/bin/bash
22
set -eux
3-
# install core packages
4-
pip install jupyterlab~=4.0
3+
4+
# Install JupyterLab
5+
#
6+
# Excludes v4.3.2 as it pins `httpx` to a very narrow range, causing `pip
7+
# install` to stall on package resolution.
8+
#
9+
# See: https://github.com/jupyterlab/jupyter-ai/issues/1138
10+
pip install jupyterlab~=4.0,!=4.3.2
11+
12+
# Install core packages
513
cp playground/config.example.py playground/config.py
614
jlpm install
715
jlpm dev-install

0 commit comments

Comments
 (0)