Skip to content

Commit

Permalink
Fix install step in CI (#1139)
Browse files Browse the repository at this point in the history
* fix install in CI

* pre-commit
  • Loading branch information
dlqqq authored Dec 5, 2024
1 parent 342bb7b commit 2c196d9
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
#!/bin/bash
set -eux
# install core packages
pip install jupyterlab~=4.0

# Install JupyterLab
#
# Excludes v4.3.2 as it pins `httpx` to a very narrow range, causing `pip
# install` to stall on package resolution.
#
# See: https://github.com/jupyterlab/jupyter-ai/issues/1138
pip install jupyterlab~=4.0,!=4.3.2

# Install core packages
cp playground/config.example.py playground/config.py
jlpm install
jlpm dev-install
Expand Down

0 comments on commit 2c196d9

Please sign in to comment.