Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
sudo rm -rf $(which node)

cp ./jupytergis_core/dist/jupytergis*.whl ./jupytergis_lab/dist/jupytergis*.whl ./jupytergis_qgis/dist/jupytergis*.whl .
python -m pip install jupytergis*.whl
python -m pip install jupytergis*.whl "jupyterlab>=4.3,<5"

jupyter labextension list
jupyter labextension list 2>&1 | grep -ie "jupytergis.*OK"
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
run: |
set -eux
cp ./jupytergis_core/dist/jupytergis*.whl ./jupytergis_lab/dist/jupytergis*.whl ./jupytergis_qgis/dist/jupytergis*.whl .
python -m pip install jupytergis*.whl "jupyter-collaboration>=3,<4"
python -m pip install jupytergis*.whl "jupyter-collaboration>=3,<4" "jupyterlab>=4.3,<5"

- name: Install dependencies
shell: bash -l {0}
Expand Down
1 change: 1 addition & 0 deletions python/jupytergis/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ dependencies = [
"jupytergis_lab>=0.1.0,<1",
"jupytergis_qgis>=0.1.0,<1",
"jupyter-collaboration>=3,<4",
"jupyterlab>=4.3,<5",
]
dynamic = ["version"]
license = {file = "LICENSE"}
Expand Down
2 changes: 0 additions & 2 deletions python/jupytergis_lab/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ classifiers = [
dependencies = [
"mapbox-vector-tile",
"requests",
"jupyter_server>=2.0.1,<3",
"jupyter-ydoc>=2,<3",
"jupyterlab>=4.3,<5",
"ypywidgets>=0.9.0,<0.10.0",
"yjs-widgets>=0.3.5,<0.4",
"comm>=0.1.2,<0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion requirements-build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
datamodel-code-generator>=0.23.0
hatchling>=1.5.0,<2
jupyter-collaboration>=3,<4
jupyterlab>=4,<5
jupyterlab>=4.3,<5
mercantile>=1.2
pillow>=10
pydantic>=2.4.2,<3
Expand Down
Loading