Skip to content

Commit 3b0879d

Browse files
authored
Builds for 0.4.2 release (#1546)
1 parent 600a184 commit 3b0879d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ 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.4.1"
15+
default: "0.4.2"
1616
pytorch_version:
1717
description: "PyTorch version to build against; by default, use a nightly"
1818
type: string
@@ -170,7 +170,7 @@ workflows:
170170
build:
171171
jobs:
172172
- circleci_consistency
173-
#
173+
174174
- binary_linux_wheel:
175175
name: binary_linux_wheel_py2.7_cpu
176176
python_version: "2.7"
@@ -374,7 +374,7 @@ workflows:
374374
name: binary_macos_conda_py3.7_cpu
375375
python_version: "3.7"
376376
cu_version: "cpu"
377-
377+
#
378378
- binary_linux_wheel:
379379
name: nightly_binary_linux_wheel_py2.7_cpu
380380
python_version: "2.7"

.circleci/config.yml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ 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.4.1"
15+
default: "0.4.2"
1616
pytorch_version:
1717
description: "PyTorch version to build against; by default, use a nightly"
1818
type: string

packaging/build_conda.sh

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

77
export BUILD_TYPE=conda
8-
setup_env 0.4.1
8+
setup_env 0.4.2
99
export SOURCE_ROOT_DIR="$PWD"
1010
setup_conda_pytorch_constraint
1111
setup_conda_cudatoolkit_constraint

packaging/build_wheel.sh

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

77
export BUILD_TYPE=wheel
8-
setup_env 0.4.1
8+
setup_env 0.4.2
99
setup_wheel_python
1010
pip_install numpy pyyaml future ninja
1111
setup_pip_pytorch_version

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_dist(pkgname):
3030
return None
3131

3232

33-
version = '0.4.1a0'
33+
version = '0.4.2a0'
3434
sha = 'Unknown'
3535
package_name = 'torchvision'
3636

0 commit comments

Comments
 (0)