Skip to content

Commit

Permalink
set minimal veersion to 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Dec 4, 2019
1 parent b32d62e commit e870a3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ matrix:
env: GROUP=python
- python: 3.8
env: GROUP=python
- python: 3.5
env: GROUP=docs
- python: 3.6
env: GROUP=docs
- python: 3.7
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
name = "jupyter_server"

# Minimal Python version sanity check
if sys.version_info < (3,6):
if sys.version_info < (3,5):
error = "ERROR: %s requires Python version 3.5 or above." % name
print(error, file=sys.stderr)
sys.exit(1)
Expand Down

0 comments on commit e870a3e

Please sign in to comment.