Skip to content

Commit a867bb4

Browse files
authored
Pin ypy-websocket to 0.2 (#6499)
* Pin `ypy-websocket` to `0.2` * More pinning * Pin in build deps
1 parent 5ba1fb4 commit a867bb4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/actions/build-dist/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ runs:
99
- name: Install dependencies
1010
shell: bash
1111
run: |
12-
python -m pip install --upgrade jupyter_packaging~=0.10 "jupyterlab>=4.0.0a25,<5" build
12+
python -m pip install --upgrade jupyter_packaging~=0.10 "jupyterlab>=4.0.0a25,<5" ypy-websocket==0.2 build
1313
1414
- name: Build pypi distributions
1515
shell: bash

.github/workflows/buildutils.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Install dependencies
2828
run: |
29-
python -m pip install -U "jupyterlab>=4.0.0a25,<5" hatch
29+
python -m pip install -U "jupyterlab>=4.0.0a25,<5" ypy-websocket==0.2 hatch
3030
jlpm
3131
jlpm run build
3232
@@ -81,6 +81,6 @@ jobs:
8181

8282
- name: Install dependencies
8383
run: |
84-
python -m pip install -U "jupyterlab>=4.0.0a25,<5" pip
84+
python -m pip install -U "jupyterlab>=4.0.0a25,<5" ypy-websocket==0.2 pip
8585
jlpm
8686
jlpm run build

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["hatchling>=1.0", "jupyterlab>=4.0.0a25,<5"]
2+
requires = ["hatchling>=1.0", "jupyterlab>=4.0.0a25,<5", "ypy-websocket==0.2"]
33
build-backend = "hatchling.build"
44

55
[project]
@@ -34,6 +34,7 @@ dependencies = [
3434
"jupyterlab_server>=2.13,<3",
3535
"notebook_shim>=0.1,<0.2",
3636
"tornado>=6.1.0",
37+
"ypy-websocket==0.2",
3738
]
3839
dynamic = ["version"]
3940

0 commit comments

Comments
 (0)