Skip to content

Commit 604d730

Browse files
committed
Update Github actions to handle Python 3.12
1 parent 9a4aa7e commit 604d730

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/check-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
uses: actions/checkout@v4
1818
- name: Base Setup
1919
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
20+
- name: Install typing_extension for Python 3.12
21+
shell: bash
22+
run: pip install typing_extensions
2023
- name: Check Release
2124
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2
2225
with:

.github/workflows/prep-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
contents: write
3131
steps:
3232
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
33-
33+
- name: Install typing_extension for Python 3.12
34+
shell: bash
35+
run: pip install typing_extensions
3436
- name: Prep Release
3537
id: prep-release
3638
uses: jupyter-server/jupyter_releaser/.github/actions/prep-release@v2

.github/workflows/publish-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
id-token: write
2121
steps:
2222
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
23-
23+
- name: Install typing_extension for Python 3.12
24+
shell: bash
25+
run: pip install typing_extensions
2426
- uses: actions/create-github-app-token@v1
2527
id: app-token
2628
with:

0 commit comments

Comments
 (0)