Skip to content

Commit b32d62e

Browse files
committed
revert back to python 3.5
1 parent a4e1d53 commit b32d62e

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
15-
python-version: [ '3.6', '3.7', '3.8' ]
15+
python-version: [ '3.5', '3.6', '3.7', '3.8' ]
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v1

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ script:
5252
5353
matrix:
5454
include:
55+
- python: 3.5
56+
env: GROUP=python
5557
- python: 3.6
5658
env: GROUP=python
5759
- python: 3.7

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ matrix:
44

55
environment:
66
matrix:
7+
- CONDA_PY: 35
8+
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
79
- CONDA_PY: 36
810
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
911
- CONDA_PY: 37

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

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

@@ -67,6 +67,7 @@
6767
'License :: OSI Approved :: BSD License',
6868
'Programming Language :: Python',
6969
'Programming Language :: Python :: 3',
70+
'Programming Language :: Python :: 3.5',
7071
'Programming Language :: Python :: 3.6',
7172
'Programming Language :: Python :: 3.7',
7273
],
@@ -94,7 +95,7 @@
9495
'nbval', 'nose-exclude', 'selenium', 'pytest', 'pytest-cov'],
9596
'test:sys_platform == "win32"': ['nose-exclude'],
9697
},
97-
python_requires = '>=3.6',
98+
python_requires = '>=3.5',
9899
entry_points = {
99100
'console_scripts': [
100101
'jupyter-server = jupyter_server.serverapp:main',

0 commit comments

Comments
 (0)