Skip to content

Commit db00586

Browse files
authored
Update supported pythons to 3.8-3.11 (#1013)
1 parent 2bd5321 commit db00586

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,12 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest, windows-latest, macos-latest]
23-
python-version: ["3.7", "3.11"]
24-
exclude:
25-
- os: macos-latest
26-
python-version: "3.11" # not yet available
23+
python-version: ["3.8", "3.11"]
2724
include:
2825
- os: windows-latest
2926
python-version: "3.9"
3027
- os: ubuntu-latest
31-
python-version: "pypy-3.7"
28+
python-version: "pypy-3.8"
3229
- os: macos-latest
3330
python-version: "3.10"
3431
- os: ubuntu-latest
@@ -137,7 +134,7 @@ jobs:
137134
- name: Base Setup
138135
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
139136
with:
140-
python_version: "3.7"
137+
python_version: "3.8"
141138
- name: Install miniumum versions
142139
uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
143140
- name: Run the unit tests

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ classifiers = [
1717
"License :: OSI Approved :: BSD License",
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.7",
2120
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
2424
]
2525
urls = {Homepage = "https://ipython.org"}
26-
requires-python = ">=3.7"
26+
requires-python = ">=3.8"
2727
dependencies = [
2828
"debugpy>=1.0",
2929
"ipython>=7.23.1",

0 commit comments

Comments
 (0)