Skip to content

Commit cfffc60

Browse files
committed
Drop support for Python 3.7
1 parent bc49c6e commit cfffc60

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
jupyterlab-version: ["2", "3"]
41-
python-version: ["3.7", "3.11"]
41+
python-version: ["3.8", "3.11"]
4242
jupyter-app: [notebook, lab]
4343

4444
steps:
@@ -115,10 +115,9 @@ jobs:
115115
- name: Check the lab extension
116116
# We test the labextension thoroughly in the acceptance tests below, so
117117
# we have conditionally disabled this basic check is to avoid issues in
118-
# jupyterlab.browser_check with jupyterlab 2 and a modern version of
119-
# python (3.11+).
118+
# jupyterlab.browser_check with jupyterlab 2 and jupyter_server 2+.
120119
#
121-
if: ${{ !(matrix.jupyterlab-version == '2' && startsWith(matrix.python-version, '3.11')) }}
120+
if: matrix.jupyterlab-version != '2'
122121
run: |
123122
jupyter labextension list
124123
jupyter labextension list 2>&1 | grep -iE '@jupyterhub/jupyter-server-proxy.*OK.*'

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dynamic = [
1818
]
1919
readme = "README.md"
2020
license = { file = "LICENSE" }
21-
requires-python = ">=3.7"
21+
requires-python = ">=3.8"
2222
classifiers = [
2323
"Framework :: Jupyter",
2424
"Framework :: Jupyter :: JupyterLab",
@@ -32,7 +32,6 @@ classifiers = [
3232
"Operating System :: POSIX :: Linux",
3333
"Programming Language :: Python",
3434
"Programming Language :: Python :: 3",
35-
"Programming Language :: Python :: 3.7",
3635
"Programming Language :: Python :: 3.8",
3736
"Programming Language :: Python :: 3.9",
3837
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)