Skip to content

Commit 3c87a89

Browse files
committed
Drop support for Python 3.9
1 parent 39d4c74 commit 3c87a89

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
matrix:
2424
os: [ubuntu-latest, windows-latest, macos-latest]
2525
python-version:
26-
- "3.9"
2726
- "3.10"
2827
- "3.11"
2928
- "3.12"
@@ -122,7 +121,7 @@ jobs:
122121
fail-fast: false
123122
matrix:
124123
os: [ubuntu-latest]
125-
python-version: ["3.9"]
124+
python-version: ["3.10"]
126125
steps:
127126
- name: Checkout
128127
uses: actions/checkout@v5
@@ -153,7 +152,7 @@ jobs:
153152
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
154153
with:
155154
dependency_type: minimum
156-
python_version: "3.9"
155+
python_version: "3.10"
157156

158157
- name: List installed packages
159158
run: |

.github/workflows/downstream.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
- name: Setup Python
9898
uses: actions/setup-python@v6
9999
with:
100-
python-version: "3.9"
100+
python-version: "3.10"
101101
architecture: "x64"
102102
- name: Install System Packages
103103
run: |
@@ -129,7 +129,7 @@ jobs:
129129
- name: Setup Python
130130
uses: actions/setup-python@v6
131131
with:
132-
python-version: "3.9"
132+
python-version: "3.10"
133133
architecture: "x64"
134134
- name: Install System Packages
135135
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ classifiers = [
1717
"Programming Language :: Python",
1818
"Programming Language :: Python :: 3",
1919
]
20-
requires-python = ">=3.9"
20+
requires-python = ">=3.10"
2121
dependencies = [
2222
"debugpy>=1.6.5",
2323
"ipython>=7.23.1",

0 commit comments

Comments
 (0)