Skip to content

Commit 9e9abaf

Browse files
authored
Require Python 3.9+, test on Python 3.9 and 3.13 (#609)
* Update Python versions in `test.yml` * Update Python versions in `pyproject.toml`
1 parent a41f18e commit 9e9abaf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
fail-fast: false
4141
matrix:
4242
os: [ubuntu-latest, windows-latest, macos-latest]
43-
python-version: ["3.8", "3.12"]
43+
python-version: ["3.9", "3.13"]
4444
steps:
4545
- uses: actions/checkout@v4
4646
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ classifiers = [
1414
"Intended Audience :: Science/Research",
1515
"License :: OSI Approved :: BSD License",
1616
"Programming Language :: Python",
17-
"Programming Language :: Python :: 3.8",
1817
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
20+
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
2122
]
2223
urls = {Homepage = "https://jupyter.org"}
23-
requires-python = ">=3.8"
24+
requires-python = ">=3.9"
2425
dynamic = ["version"]
2526
dependencies = [
2627
"click",

0 commit comments

Comments
 (0)