Skip to content

Commit fac5035

Browse files
authored
Merge pull request #150 from datalayer-contrib/revert-to-py35
Revert back to python 3.5 support
2 parents 8880ccb + e870a3e commit fac5035

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,16 @@ 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
5860
env: GROUP=python
5961
- python: 3.8
6062
env: GROUP=python
63+
- python: 3.5
64+
env: GROUP=docs
6165
- python: 3.6
6266
env: GROUP=docs
6367
- 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: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
name = "jupyter_server"
2020

2121
# Minimal Python version sanity check
22-
if sys.version_info < (3,6):
23-
error = "ERROR: %s requires Python version 3.6 or above." % name
22+
if sys.version_info < (3,5):
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)