Skip to content

Commit 03573e1

Browse files
committed
Minimum Python 3.8, jupyter-server 2, jupyterlab 4
1 parent 4b0b44b commit 03573e1

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,9 @@ jobs:
7474
fail-fast: false
7575
matrix:
7676
include:
77-
- python-version: '3.7'
78-
jupyterlab-major: '3'
79-
- python-version: '3.10'
77+
- python-version: '3.8'
8078
jupyterlab-major: '4'
81-
- python-version: '3.12'
79+
- python-version: '3.13'
8280
jupyterlab-major: '4'
8381
runs-on: ubuntu-24.04
8482
# Includes geckdriver and firefox

dev-requirements-jl3.old

Lines changed: 0 additions & 4 deletions
This file was deleted.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ def get_version():
9191
long_description=open("README.md").read(),
9292
long_description_content_type="text/markdown",
9393
cmdclass=cmdclass,
94-
install_requires=["jupyter-server"],
95-
python_requires=">=3.7",
94+
install_requires=["jupyter-server>=2"],
95+
python_requires=">=3.8",
9696
zip_safe=False,
9797
include_package_data=True,
9898
platforms="Linux, Mac OS X, Windows",
@@ -101,12 +101,12 @@ def get_version():
101101
"License :: OSI Approved :: BSD License",
102102
"Programming Language :: Python",
103103
"Programming Language :: Python :: 3",
104-
"Programming Language :: Python :: 3.7",
105104
"Programming Language :: Python :: 3.8",
106105
"Programming Language :: Python :: 3.9",
107106
"Programming Language :: Python :: 3.10",
108107
"Programming Language :: Python :: 3.11",
109108
"Programming Language :: Python :: 3.12",
109+
"Programming Language :: Python :: 3.13",
110110
"Framework :: Jupyter",
111111
],
112112
)

0 commit comments

Comments
 (0)