Skip to content

Commit 9fc9220

Browse files
committed
Add Python 3.7 to Travis and update to go-IPFS v0.4.18
1 parent bfe2c33 commit 9fc9220

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
language: python
2+
dist: xenial
23
matrix:
34
include:
45
- python: "2.7"
@@ -9,17 +10,19 @@ matrix:
910
env: TOXENV=py35
1011
- python: "3.6"
1112
env: TOXENV=py36
12-
- python: "3.6"
13+
- python: "3.7"
14+
env: TOXENV=py37
15+
- python: "3.7"
1316
env: TOXENV=codestyle
1417
before_install: true
1518

1619
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
20+
- wget "https://dist.ipfs.io/go-ipfs/v0.4.18/go-ipfs_v0.4.18_linux-amd64.tar.gz" -O /tmp/ipfs.tar.gz
1821
- mkdir -p $HOME/bin
1922
- pushd . && cd $HOME/bin && tar -xzvf /tmp/ipfs.tar.gz && popd
2023
- export PATH="$HOME/bin/go-ipfs:$PATH"
2124

2225
install:
2326
- pip install tox
2427

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