Skip to content

Commit b0f88df

Browse files
authored
Make CI use PyTorch nightly (#1492)
1 parent b8ef532 commit b0f88df

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ binary_common: &binary_common
3939
type: string
4040
default: ""
4141
pytorch_version:
42-
description: "PyTorch version to build against; by default, use 1.3. Use empty string for nightly"
42+
description: "PyTorch version to build against; by default, use a nightly"
4343
type: string
44-
default: "1.3"
44+
default: ""
4545
# Don't edit these
4646
python_version:
4747
description: "Python version to build against (e.g., 3.7)"

.circleci/config.yml.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ binary_common: &binary_common
3939
type: string
4040
default: ""
4141
pytorch_version:
42-
description: "PyTorch version to build against; by default, use 1.3. Use empty string for nightly"
42+
description: "PyTorch version to build against; by default, use a nightly"
4343
type: string
44-
default: "1.3"
44+
default: ""
4545
# Don't edit these
4646
python_version:
4747
description: "Python version to build against (e.g., 3.7)"

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ before_install:
4242
# Useful for debugging any issues with conda
4343
- conda info -a
4444

45-
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pytorch scipy -c pytorch
45+
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pytorch scipy -c pytorch-nightly
4646
- source activate test-environment
4747
- |
4848
if [[ "$IMAGE_BACKEND" == "Pillow-SIMD" ]]; then

0 commit comments

Comments
 (0)