Skip to content

Commit e870a3e

Browse files
committed
set minimal veersion to 3.5
1 parent b32d62e commit e870a3e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ matrix:
6060
env: GROUP=python
6161
- python: 3.8
6262
env: GROUP=python
63+
- python: 3.5
64+
env: GROUP=docs
6365
- python: 3.6
6466
env: GROUP=docs
6567
- python: 3.7

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
name = "jupyter_server"
2020

2121
# Minimal Python version sanity check
22-
if sys.version_info < (3,6):
22+
if sys.version_info < (3,5):
2323
error = "ERROR: %s requires Python version 3.5 or above." % name
2424
print(error, file=sys.stderr)
2525
sys.exit(1)

0 commit comments

Comments
 (0)