Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ binary_common: &binary_common
build_version:
description: "version number of release binary; by default, build a nightly"
type: string
default: "0.3.1"
default: "0.3.2"
pytorch_version:
description: "PyTorch version to build against; by default, use a nightly"
type: string
default: "1.3.0"
default: "1.4.0"
# Don't edit these
python_version:
description: "Python version to build against (e.g., 3.7)"
Expand Down Expand Up @@ -159,7 +159,7 @@ workflows:
build:
jobs:
- circleci_consistency
#

- binary_linux_wheel:
name: binary_linux_wheel_py2.7
python_version: "2.7"
Expand Down Expand Up @@ -216,7 +216,7 @@ workflows:
- binary_macos_conda:
name: binary_macos_conda_py3.7
python_version: "3.7"

#
- binary_linux_wheel:
name: nightly_binary_linux_wheel_py2.7
python_version: "2.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 @@ -12,11 +12,11 @@ binary_common: &binary_common
build_version:
description: "version number of release binary; by default, build a nightly"
type: string
default: "0.3.1"
default: "0.3.2"
pytorch_version:
description: "PyTorch version to build against; by default, use a nightly"
type: string
default: "1.3.0"
default: "1.4.0"
# Don't edit these
python_version:
description: "Python version to build against (e.g., 3.7)"
Expand Down
2 changes: 1 addition & 1 deletion packaging/build_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

export BUILD_TYPE="conda"
export NO_CUDA_PACKAGE=1
setup_env 0.3.1
setup_env 0.3.2
export SOURCE_ROOT_DIR="$PWD"
setup_conda_pytorch_constraint
conda build $CONDA_CHANNEL_FLAGS --no-anaconda-upload --python "$PYTHON_VERSION" packaging/torchaudio
2 changes: 1 addition & 1 deletion packaging/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

export BUILD_TYPE="wheel"
export NO_CUDA_PACKAGE=1
setup_env 0.3.1
setup_env 0.3.2
setup_wheel_python
"$script_dir/build_from_source.sh" "$(pwd)" # Build static dependencies
pip_install numpy future
Expand Down