Skip to content

Commit 398c0ea

Browse files
committed
Add Python 3.7 to Travis and update to go-IPFS v0.4.18
1 parent 50341bf commit 398c0ea

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
language: 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
25
matrix:
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

1622
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
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

2228
install:
2329
- pip install tox
2430

25-
script: tox
31+
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)