Skip to content

Commit 7866742

Browse files
authored
Merge pull request #5541 from kevin-bates/py38
Add python 3.8, begin testing 3.9-dev
2 parents e937fd7 + e866120 commit 7866742

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ cache:
88
python:
99
- 3.6
1010

11-
1211
env:
1312
global:
1413
- PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH
@@ -96,6 +95,10 @@ matrix:
9695
- python: 3.7
9796
dist: xenial
9897
env: GROUP=python
98+
- python: 3.8
99+
env: GROUP=python
100+
- python: 3.9-dev
101+
env: GROUP=python
99102
- python: 3.6
100103
env: GROUP=docs
101104

appveyor.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ matrix:
55
environment:
66
matrix:
77
- CONDA_PY: 36
8+
CONDA_PY_SPEC: 3.6
89
CONDA_INSTALL_LOCN: "C:\\Miniconda36-x64"
10+
- CONDA_PY: 38
11+
CONDA_PY_SPEC: 3.8
12+
CONDA_INSTALL_LOCN: "C:\\Miniconda37-x64"
913

1014
platform:
1115
- x64
@@ -17,7 +21,7 @@ install:
1721
- cmd: conda config --set show_channel_urls true
1822
- cmd: conda config --add channels conda-forge
1923
#- cmd: conda update --yes --quiet conda
20-
- cmd: conda install -y pyzmq tornado jupyter_client nbformat ipykernel pip nodejs nose
24+
- cmd: conda install -y python=%CONDA_PY_SPEC% pyzmq tornado jupyter_client nbformat ipykernel pip nodejs nose
2125
# not using `conda install -y` on nbconvent package because there is
2226
# currently a bug with the version that the anaconda installs, so we will just install it with pip
2327
- cmd: pip install nbconvert

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
'Programming Language :: Python :: 3.5',
9595
'Programming Language :: Python :: 3.6',
9696
'Programming Language :: Python :: 3.7'
97+
'Programming Language :: Python :: 3.8'
9798
],
9899
zip_safe = False,
99100
install_requires = [

0 commit comments

Comments
 (0)