mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 18:14:10 +00:00
Drop Python 3.5 support
See https://github.com/jupyterhub/jupyterhub/pull/3176#issuecomment-694315759 For Travis, I push the version cascade down one step. Should preserve our test coverage while conserving test duration
This commit is contained in:
6
setup.py
6
setup.py
@@ -17,8 +17,8 @@ from setuptools.command.bdist_egg import bdist_egg
|
||||
|
||||
|
||||
v = sys.version_info
|
||||
if v[:2] < (3, 5):
|
||||
error = "ERROR: JupyterHub requires Python version 3.5 or above."
|
||||
if v[:2] < (3, 6):
|
||||
error = "ERROR: JupyterHub requires Python version 3.6 or above."
|
||||
print(error, file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
@@ -94,7 +94,7 @@ setup_args = dict(
|
||||
license="BSD",
|
||||
platforms="Linux, Mac OS X",
|
||||
keywords=['Interactive', 'Interpreter', 'Shell', 'Web'],
|
||||
python_requires=">=3.5",
|
||||
python_requires=">=3.6",
|
||||
entry_points={
|
||||
'jupyterhub.authenticators': [
|
||||
'default = jupyterhub.auth:PAMAuthenticator',
|
||||
|
Reference in New Issue
Block a user