Skip to content

Commit 42b3b65

Browse files
committed
python 3.6
1 parent d55e8c9 commit 42b3b65

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

.travis.yml

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,33 +18,36 @@ matrix:
1818
include:
1919
# packaging sanity check
2020
- os: linux
21-
python: '3.7'
21+
python: '3.6'
2222
env: TOXENV=check
2323
# python linting
2424
- os: linux
25-
python: '3.7'
25+
python: '3.6'
2626
env: TOXENV=lint
2727
# check docs build correctly
2828
- os: linux
29-
python: '3.7'
29+
python: '3.6'
3030
env: TOXENV=docs_build
3131
# check docs links
3232
- os: linux
33-
python: '3.7'
33+
python: '3.6'
3434
env: TOXENV=docs_linkcheck
3535
# check that conda build/install works
3636
- os: linux
37-
python: '3.7'
37+
python: '3.6'
3838
env: TOXENV=condarecipe
3939
# linux, various python and notebook versions
4040
- os: linux
41-
python: '3.7'
42-
env: TOXENV=py37-notebook60
41+
python: '3.6'
42+
env: TOXENV=py36-notebook55
43+
- os: linux
44+
python: '3.6'
45+
env: TOXENV=py36-notebook60
4346
- os: linux
44-
python: '3.7'
45-
env: TOXENV=py37-notebook
47+
python: '3.6'
48+
env: TOXENV=py36-notebook
4649
- os: linux
47-
python: '3.7'
50+
python: '3.6'
4851
env: TOXENV=appveyorartifacts
4952
allow_failures:
5053
- env: TOXENV=appveyorartifacts
@@ -55,9 +58,11 @@ env:
5558
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
5659
- SEGFAULT_SIGNALS=all
5760
before_install:
58-
- uname -a
59-
- id -un
60-
- id -Gn
61+
# - uname -a
62+
# - id -un
63+
# - id -Gn
64+
- python --version
65+
- pip install -U pip
6166
# stuff for conda recipe
6267
- 'if [[ ${TOXENV} == "condarecipe" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi'
6368
- 'if [[ ${TOXENV} == "condarecipe" ]]; then bash miniconda.sh -b -p $HOME/miniconda; fi'

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ envlist =
66
clean,
77
check,
88
lint,
9-
{py36,py37,py38}-notebook{60},
9+
{py36,py37,py38}-notebook{55,60},
1010
report,
1111

1212
[testenv]
@@ -15,7 +15,7 @@ basepython =
1515
py36: {env:TOXPYTHON:python3.6}
1616
py37: {env:TOXPYTHON:python3.7}
1717
py38: {env:TOXPYTHON:python3.8}
18-
{spell}: {env:TOXPYTHON:python3.7}
18+
{spell}: {env:TOXPYTHON:python3.6}
1919
{appveyorartifacts,lint,check}: {env:TOXPYTHON:python3}
2020
{condarecipe}: {env:TOXPYTHON:python3}
2121
{clean,codecov,coveralls,report}: {env:TOXPYTHON:python3}
@@ -32,6 +32,7 @@ deps =
3232
jupyter_latex_envs>=1.4.0
3333
mock
3434
nose
35+
notebook55: https://github.com/jupyter/notebook/archive/5.5.0.zip
3536
notebook60: https://github.com/jupyter/notebook/archive/6.0.0.zip
3637
notebookmaster: https://github.com/jupyter/notebook/archive/master.zip
3738
notebook: notebook

0 commit comments

Comments
 (0)