Skip to content

Commit 15686cf

Browse files
committed
Add Python 3.7 to Travis and update to go-IPFS v0.4.18
1 parent 5b398eb commit 15686cf

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,19 @@ matrix:
99
env: TOXENV=py35
1010
- python: "3.6"
1111
env: TOXENV=py36
12-
- python: "3.6"
12+
- python: "3.7"
13+
env: TOXENV=py37
14+
- python: "3.7"
1315
env: TOXENV=codestyle
1416
before_install: true
1517

1618
before_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
19+
- wget "https://dist.ipfs.io/go-ipfs/v0.4.18/go-ipfs_v0.4.18_linux-amd64.tar.gz" -O /tmp/ipfs.tar.gz
1820
- mkdir -p $HOME/bin
1921
- pushd . && cd $HOME/bin && tar -xzvf /tmp/ipfs.tar.gz && popd
2022
- export PATH="$HOME/bin/go-ipfs:$PATH"
2123

2224
install:
2325
- pip install tox
2426

25-
script: tox
27+
script: tox

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)