Skip to content

Commit 3e1a10c

Browse files
authored
update to jupyterlite-core 0.7.0b1 (#237)
1 parent b481256 commit 3e1a10c

File tree

9 files changed

+579
-577
lines changed

9 files changed

+579
-577
lines changed

.github/workflows/check-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
token: ${{ secrets.GITHUB_TOKEN }}
2929

3030
- name: Upload Distributions
31-
uses: actions/upload-artifact@v4
31+
uses: actions/upload-artifact@v5
3232
with:
3333
name: jupyterlite-pyodide-kernel-releaser-dist-${{ github.run_number }}
3434
path: .jupyter_releaser_checkout/dist

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ jobs:
6565
cat *.txt
6666
6767
- name: Upload extension packages
68-
uses: actions/upload-artifact@v4
68+
uses: actions/upload-artifact@v5
6969
with:
7070
name: jupyterlite-pyodide-kernel-dist-${{ github.run_number }}
7171
path: dist
7272
if-no-files-found: error
7373

7474
- name: Upload test config
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: pyproject-toml
7878
path: pyproject.toml
@@ -165,7 +165,7 @@ jobs:
165165

166166
- name: Upload reports
167167
if: always()
168-
uses: actions/upload-artifact@v4
168+
uses: actions/upload-artifact@v5
169169
with:
170170
name: |-
171171
jupyterlite-pyodide-kernel-pytest-${{ github.run_number }}-${{ matrix.os }}-${{ matrix.python-version}}
@@ -196,7 +196,7 @@ jobs:
196196
- name: Install the extension
197197
run: |
198198
set -eux
199-
python -m pip install "jupyterlab>=4.5.0b0,<4.6.0" dist/jupyterlite_pyodide_kernel*.whl
199+
python -m pip install "jupyterlab>=4.5.0rc0,<4.6.0" dist/jupyterlite_pyodide_kernel*.whl
200200
201201
- name: Install dependencies
202202
working-directory: ui-tests
@@ -218,7 +218,7 @@ jobs:
218218
219219
- name: Upload Playwright Test report
220220
if: always()
221-
uses: actions/upload-artifact@v4
221+
uses: actions/upload-artifact@v5
222222
with:
223223
name: |-
224224
jupyterlite-pyodide-kernel-playwright-tests-${{ github.run_number }}-${{ matrix.project }}

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
enableImmutableInstalls: false
22
enableInlineBuilds: false
3+
enableScripts: false
34
enableTelemetry: false
45
httpTimeout: 60000
56
nodeLinker: node-modules

packages/pyodide-kernel-extension/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@
4747
"watch:labextension": "jupyter labextension watch ."
4848
},
4949
"dependencies": {
50-
"@jupyterlab/application": "^4.5.0-beta.1",
51-
"@jupyterlab/coreutils": "^6.5.0-beta.1",
52-
"@jupyterlab/logconsole": "^4.5.0-beta.1",
53-
"@jupyterlite/contents": "^0.7.0-beta.0",
54-
"@jupyterlite/kernel": "^0.7.0-beta.0",
50+
"@jupyterlab/application": "^4.5.0-rc.0",
51+
"@jupyterlab/coreutils": "^6.5.0-rc.0",
52+
"@jupyterlab/logconsole": "^4.5.0-rc.0",
53+
"@jupyterlite/contents": "^0.7.0-beta.1",
54+
"@jupyterlite/kernel": "^0.7.0-beta.1",
5555
"@jupyterlite/pyodide-kernel": "^0.7.0-beta.0",
56-
"@jupyterlite/server": "^0.7.0-beta.0"
56+
"@jupyterlite/server": "^0.7.0-beta.1"
5757
},
5858
"devDependencies": {
59-
"@jupyterlab/builder": "^4.5.0-beta.0",
59+
"@jupyterlab/builder": "^4.5.0-rc.0",
6060
"rimraf": "^6.0.1",
6161
"typescript": "~5.2.2"
6262
},

packages/pyodide-kernel/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
"dependencies": {
5353
"@jupyterlab/coreutils": "^6.5.0-beta.1",
5454
"@jupyterlab/logconsole": "^4.5.0-beta.1",
55-
"@jupyterlite/contents": "^0.7.0-beta.0",
56-
"@jupyterlite/kernel": "^0.7.0-beta.0",
55+
"@jupyterlite/contents": "^0.7.0-beta.1",
56+
"@jupyterlite/kernel": "^0.7.0-beta.1",
5757
"coincident": "^1.2.3",
5858
"comlink": "^4.4.2"
5959
},

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"hatchling >=1.4.0",
4-
"jupyterlab >=4.5.0b0,<4.6.0",
4+
"jupyterlab >=4.5.0rc0,<4.6.0",
55
]
66
build-backend = "hatchling.build"
77

@@ -37,7 +37,7 @@ classifiers = [
3737
"Programming Language :: Python :: 3.14",
3838
]
3939
dependencies = [
40-
"jupyterlite-core >=0.7.0b0,<0.8.0",
40+
"jupyterlite-core >=0.7.0b1,<0.8.0",
4141
"pkginfo"
4242
]
4343

@@ -59,7 +59,7 @@ jupyterlite-pyodide-kernel-pyodide = "jupyterlite_pyodide_kernel.addons.pyodide:
5959
dev = [
6060
"build",
6161
"hatch",
62-
"jupyterlab >=4.5.0b0,<4.6.0",
62+
"jupyterlab >=4.5.0rc0,<4.6.0",
6363
]
6464

6565
lint = [
@@ -118,11 +118,11 @@ version_cmd = "python scripts/bump-version.py"
118118

119119
[tool.jupyter-releaser.hooks]
120120
before-bump-version = [
121-
"python -m pip install 'jupyterlab~=4.5.0a1'",
121+
"python -m pip install 'jupyterlab~=4.5.0rc0'",
122122
"jlpm"
123123
]
124124
before-build-npm = [
125-
"python -m pip install 'jupyterlab~=4.5.0a1' hatch",
125+
"python -m pip install 'jupyterlab~=4.5.0rc0' hatch",
126126
"python -m pip install -e .[dev]",
127127
"jlpm",
128128
"jlpm build:prod",

ui-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"rimraf": "^5.0.5"
1919
},
2020
"dependencies": {
21-
"@jupyterlab/galata": "~5.5.0-beta.1",
21+
"@jupyterlab/galata": "~5.5.0-rc.0",
2222
"@playwright/test": "^1.56.1"
2323
}
2424
}

0 commit comments

Comments
 (0)