We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b32d62e commit e870a3eCopy full SHA for e870a3e
.travis.yml
@@ -60,6 +60,8 @@ matrix:
60
env: GROUP=python
61
- python: 3.8
62
63
+ - python: 3.5
64
+ env: GROUP=docs
65
- python: 3.6
66
env: GROUP=docs
67
- python: 3.7
setup.py
@@ -19,7 +19,7 @@
19
name = "jupyter_server"
20
21
# Minimal Python version sanity check
22
-if sys.version_info < (3,6):
+if sys.version_info < (3,5):
23
error = "ERROR: %s requires Python version 3.5 or above." % name
24
print(error, file=sys.stderr)
25
sys.exit(1)
0 commit comments