From c657498d7547490b435d36e36f23ee3c19ad8e9c Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 13 Jul 2022 16:21:50 -0700 Subject: [PATCH] require Python 3.7 drops support for Python 3.6 --- pyproject.toml | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5f055397..37ab552b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,6 @@ skip-string-normalization = true # target-version should be all supported versions, see # https://github.com/psf/black/issues/751#issuecomment-473066811 target_version = [ - "py36", "py37", "py38", "py39", diff --git a/setup.py b/setup.py index d475a241..3a34e41a 100755 --- a/setup.py +++ b/setup.py @@ -91,7 +91,7 @@ setup_args = dict( license="BSD", platforms="Linux, Mac OS X", keywords=['Interactive', 'Interpreter', 'Shell', 'Web'], - python_requires=">=3.6", + python_requires=">=3.7", entry_points={ 'jupyterhub.authenticators': [ 'default = jupyterhub.auth:PAMAuthenticator',