From ec9c3c4f6809bafeffaa4fcb9ece20520fcffb7e Mon Sep 17 00:00:00 2001 From: Simon Li Date: Sat, 25 Jan 2025 00:53:10 +0000 Subject: [PATCH] python_requires >= 3.10 --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dd14d04e3..79fd2470c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ build-backend = "setuptools.build_meta" [tool.black] # target-version should be all supported versions, see # https://github.com/psf/black/issues/751#issuecomment-473066811 -target-version = ["py38", "py39", "py310", "py311"] +target-version = ["py310", "py311", "py312"] # The default isort output conflicts with black autoformatting. diff --git a/setup.py b/setup.py index c2e614450..65aeb2027 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ name="binderhub", version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(cmdclass), - python_requires=">=3.8", + python_requires=">=3.10", author="Project Jupyter Contributors", author_email="jupyter@googlegroups.com", license="BSD",