From 64ea9df19c892a0fedad365a1269c7cab40bc12c Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 26 May 2025 21:36:00 +0200 Subject: [PATCH 1/2] Pin `jupyter-core<5.8.0` --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8f36140033..0346aef62c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -157,6 +157,11 @@ jobs: run: | ${{ matrix.py_cmd }} -m pip freeze ${{ matrix.py_cmd }} -m pip check + - name: Temporary pin for jupyter-core on Windows + if: matrix.os == 'windows-latest' + run: | + # See https://github.com/jupyter-server/jupyter_server/issues/1527 + ${{ matrix.py_cmd }} -m pip install "jupyter-core<5.8.0" - name: Validate the install run: | jupyter labextension list From 8bb14a05041ad168497199b531ddf70d7793f6c7 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 26 May 2025 21:41:04 +0200 Subject: [PATCH 2/2] lint --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0346aef62c..8683cb6f01 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -157,11 +157,11 @@ jobs: run: | ${{ matrix.py_cmd }} -m pip freeze ${{ matrix.py_cmd }} -m pip check - - name: Temporary pin for jupyter-core on Windows - if: matrix.os == 'windows-latest' - run: | - # See https://github.com/jupyter-server/jupyter_server/issues/1527 - ${{ matrix.py_cmd }} -m pip install "jupyter-core<5.8.0" + - name: Temporary pin for jupyter-core on Windows + if: matrix.os == 'windows-latest' + run: | + # See https://github.com/jupyter-server/jupyter_server/issues/1527 + ${{ matrix.py_cmd }} -m pip install "jupyter-core<5.8.0" - name: Validate the install run: | jupyter labextension list