Skip to content

Commit 0765854

Browse files
committed
0.3.2 point release.
1 parent ecffe24 commit 0765854

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ binary_common: &binary_common
1212
build_version:
1313
description: "version number of release binary; by default, build a nightly"
1414
type: string
15-
default: "0.3.1"
15+
default: "0.3.2"
1616
pytorch_version:
1717
description: "PyTorch version to build against; by default, use a nightly"
1818
type: string
19-
default: "1.3.0"
19+
default: "1.3.1"
2020
# Don't edit these
2121
python_version:
2222
description: "Python version to build against (e.g., 3.7)"
@@ -159,7 +159,7 @@ workflows:
159159
build:
160160
jobs:
161161
- circleci_consistency
162-
#
162+
163163
- binary_linux_wheel:
164164
name: binary_linux_wheel_py2.7
165165
python_version: "2.7"
@@ -216,7 +216,7 @@ workflows:
216216
- binary_macos_conda:
217217
name: binary_macos_conda_py3.7
218218
python_version: "3.7"
219-
219+
#
220220
- binary_linux_wheel:
221221
name: nightly_binary_linux_wheel_py2.7
222222
python_version: "2.7"

.circleci/config.yml.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ binary_common: &binary_common
1212
build_version:
1313
description: "version number of release binary; by default, build a nightly"
1414
type: string
15-
default: "0.3.1"
15+
default: "0.3.2"
1616
pytorch_version:
1717
description: "PyTorch version to build against; by default, use a nightly"
1818
type: string
19-
default: "1.3.0"
19+
default: "1.3.1"
2020
# Don't edit these
2121
python_version:
2222
description: "Python version to build against (e.g., 3.7)"

packaging/build_conda.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
66

77
export BUILD_TYPE="conda"
88
export NO_CUDA_PACKAGE=1
9-
setup_env 0.3.1
9+
setup_env 0.3.2
1010
export SOURCE_ROOT_DIR="$PWD"
1111
setup_conda_pytorch_constraint
1212
conda build $CONDA_CHANNEL_FLAGS --no-anaconda-upload --python "$PYTHON_VERSION" packaging/torchaudio

packaging/build_wheel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
66

77
export BUILD_TYPE="wheel"
88
export NO_CUDA_PACKAGE=1
9-
setup_env 0.3.1
9+
setup_env 0.3.2
1010
setup_wheel_python
1111
"$script_dir/build_from_source.sh" "$(pwd)" # Build static dependencies
1212
pip_install numpy future

0 commit comments

Comments
 (0)