Skip to content

Commit 26d2faa

Browse files
authored
Merge pull request #733 from oduwsdl/issue-732
Update testing to use go-ipfs 0.9.0
2 parents ae2e574 + ef8bb22 commit 26d2faa

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@ jobs:
1919
- 3.8
2020
- 3.9
2121
ipfs:
22-
- 0.4
23-
- 0.5
24-
- 0.6
2522
- 0.7
2623
- 0.8
24+
- 0.9
2725
runs-on: ${{ matrix.os }}
2826
name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }}
2927
steps:

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python:
44
- "3.7"
55
- "3.8"
66
before_script:
7-
- wget "https://dist.ipfs.io/go-ipfs/v0.8.0/go-ipfs_v0.8.0_linux-amd64.tar.gz" -O /tmp/ipfs.tar.gz
7+
- wget "https://dist.ipfs.io/go-ipfs/v0.9.0/go-ipfs_v0.9.0_linux-amd64.tar.gz" -O /tmp/ipfs.tar.gz
88
#- mkdir $HOME/bin
99
- pushd . && cd $HOME/bin && tar -xzvf /tmp/ipfs.tar.gz && popd
1010
- export PATH="$HOME/bin/go-ipfs:$PATH"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN mkdir -p /data/{warc,cdxj,ipfs}
2121

2222
# Download and install IPFS
2323
ENV IPFS_PATH=/data/ipfs
24-
ARG IPFS_VERSION=v0.8.0
24+
ARG IPFS_VERSION=v0.9.0
2525
RUN cd /tmp \
2626
&& wget -q https://dist.ipfs.io/go-ipfs/${IPFS_VERSION}/go-ipfs_${IPFS_VERSION}_linux-amd64.tar.gz \
2727
&& tar xvfz go-ipfs*.tar.gz \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $ pip install ./
4141

4242
## Setup
4343

44-
The InterPlanetary Filesystem (ipfs) daemon must be installed and running before starting ipwb. See the [Install IPFS](https://ipfs.io/docs/install/) page to accomplish this. In the future, we hope to make this more automated. Once ipfs is installed, start the daemon:
44+
The InterPlanetary File System (ipfs) daemon must be installed and running before starting ipwb. See the [Install IPFS](https://ipfs.io/docs/install/) page to accomplish this. In the future, we hope to make this more automated. Once ipfs is installed, start the daemon:
4545

4646
```
4747
$ ipfs daemon

0 commit comments

Comments
 (0)