Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Fix Chainer version in Travis #351

Merged
merged 1 commit into from
Jul 21, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ python:
- "2.7"
- "3.6"
env:
- CHAINER_VERSION="2.0" OPTIONAL_MODULES=0
- CHAINER_VERSION="2.0" OPTIONAL_MODULES=1
- CHAINER_VERSION="3.0.0a1" OPTIONAL_MODULES=0
- CHAINER_VERSION="3.0.0a1" OPTIONAL_MODULES=1
- CHAINER_VERSION=">=2.0" OPTIONAL_MODULES=0
- CHAINER_VERSION=">=2.0" OPTIONAL_MODULES=1
- CHAINER_VERSION="==3.0.0a1" OPTIONAL_MODULES=0
- CHAINER_VERSION="==3.0.0a1" OPTIONAL_MODULES=1
notifications:
email: false

Expand All @@ -34,7 +34,7 @@ install:
source activate chainercv_minimum;
fi
- pip install -e .
- pip install chainer=="$CHAINER_VERSION"
- pip install "chainer$CHAINER_VERSION"

script:
- pwd
Expand Down