Skip to content

Commit 8c57e09

Browse files
committed
Bump Python version used on CI
1 parent 7724c41 commit 8c57e09

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
# used by the jupyterlab/maintainer-tools base-setup action
41-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
41+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
4242
steps:
4343
- name: Checkout
4444
uses: actions/checkout@v4

.github/workflows/buildutils.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: Install Python
7575
uses: actions/setup-python@v5
7676
with:
77-
python-version: '3.9'
77+
python-version: '3.10'
7878
architecture: 'x64'
7979

8080
- name: Install dependencies

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ classifiers = [
2323
"Intended Audience :: System Administrators",
2424
"License :: OSI Approved :: BSD License",
2525
"Programming Language :: Python",
26-
"Programming Language :: Python :: 3.8",
2726
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
3029
"Programming Language :: Python :: 3.12",
30+
"Programming Language :: Python :: 3.13",
3131
"Typing :: Typed",
3232
]
3333
dependencies = [
@@ -228,7 +228,7 @@ source = ["notebook"]
228228

229229
[tool.mypy]
230230
files = "notebook"
231-
python_version = "3.8"
231+
python_version = "3.9"
232232
strict = true
233233
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
234234
warn_unreachable = true

0 commit comments

Comments
 (0)