Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ binary_common: &binary_common
type: string
default: ""
pytorch_version:
description: "PyTorch version to build against; by default, use 1.3. Use empty string for nightly"
description: "PyTorch version to build against; by default, use a nightly"
type: string
default: "1.3"
default: ""
# Don't edit these
python_version:
description: "Python version to build against (e.g., 3.7)"
Expand Down
4 changes: 2 additions & 2 deletions .circleci/config.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ binary_common: &binary_common
type: string
default: ""
pytorch_version:
description: "PyTorch version to build against; by default, use 1.3. Use empty string for nightly"
description: "PyTorch version to build against; by default, use a nightly"
type: string
default: "1.3"
default: ""
# Don't edit these
python_version:
description: "Python version to build against (e.g., 3.7)"
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ before_install:
# Useful for debugging any issues with conda
- conda info -a

- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pytorch scipy -c pytorch
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pytorch scipy -c pytorch-nightly
- source activate test-environment
- |
if [[ "$IMAGE_BACKEND" == "Pillow-SIMD" ]]; then
Expand Down