File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 11language : python
2+ # Testing Python 3.7 requires using the `xenial` dist which uses
3+ # virtual machines rather than LXC and tends to take longer, so
4+ # use it only where necessary
25matrix :
36 include :
47 - python : " 2.7"
@@ -9,17 +12,20 @@ matrix:
912 env : TOXENV=py35
1013 - python : " 3.6"
1114 env : TOXENV=py36
15+ - python : " 3.7"
16+ env : TOXENV=py37
17+ dist : xenial
1218 - python : " 3.6"
1319 env : TOXENV=codestyle
1420 before_install : true
1521
1622before_install :
17- - wget "https://dist.ipfs.io/go-ipfs/v0.4.14 /go-ipfs_v0.4.14_linux -amd64.tar.gz" -O /tmp/ipfs.tar.gz
23+ - wget "https://dist.ipfs.io/go-ipfs/v0.4.18 /go-ipfs_v0.4.18_linux -amd64.tar.gz" -O /tmp/ipfs.tar.gz
1824 - mkdir -p $HOME/bin
1925 - pushd . && cd $HOME/bin && tar -xzvf /tmp/ipfs.tar.gz && popd
2026 - export PATH="$HOME/bin/go-ipfs:$PATH"
2127
2228install :
2329 - pip install tox
2430
25- script : tox
31+ script : tox
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ envlist =
44 py27,
55 py34,
66 py35,
7- py36
7+ py36,
8+ py37
89
910# Tox' sdist feature presumes that `./setup.py sdist` is available
1011# Disable this feature until PEP-517 is implemented by both tox and flit.
You can’t perform that action at this time.
0 commit comments