mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-08 02:24:08 +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
|
v = sys.version_info
|
||||||
if v[:2] < (3, 5):
|
if v[:2] < (3, 6):
|
||||||
error = "ERROR: JupyterHub requires Python version 3.5 or above."
|
error = "ERROR: JupyterHub requires Python version 3.6 or above."
|
||||||
print(error, file=sys.stderr)
|
print(error, file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
@@ -94,7 +94,7 @@ setup_args = dict(
|
|||||||
license="BSD",
|
license="BSD",
|
||||||
platforms="Linux, Mac OS X",
|
platforms="Linux, Mac OS X",
|
||||||
keywords=['Interactive', 'Interpreter', 'Shell', 'Web'],
|
keywords=['Interactive', 'Interpreter', 'Shell', 'Web'],
|
||||||
python_requires=">=3.5",
|
python_requires=">=3.6",
|
||||||
entry_points={
|
entry_points={
|
||||||
'jupyterhub.authenticators': [
|
'jupyterhub.authenticators': [
|
||||||
'default = jupyterhub.auth:PAMAuthenticator',
|
'default = jupyterhub.auth:PAMAuthenticator',
|
||||||
|
Reference in New Issue
Block a user