Skip to content

Commit efb0b26

Browse files
authored
Preparing builds (#1558)
1 parent 3b0879d commit efb0b26

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ binary_common: &binary_common
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)"

.circleci/config.yml.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ binary_common: &binary_common
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)"

setup.py

+3-3
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.2a0'
33+
version = '0.4.2'
3434
sha = 'Unknown'
3535
package_name = 'torchvision'
3636

@@ -43,8 +43,8 @@ def get_dist(pkgname):
4343

4444
if os.getenv('BUILD_VERSION'):
4545
version = os.getenv('BUILD_VERSION')
46-
elif sha != 'Unknown':
47-
version += '+' + sha[:7]
46+
# elif sha != 'Unknown':
47+
# version += '+' + sha[:7]
4848
print("Building wheel {}-{}".format(package_name, version))
4949

5050

0 commit comments

Comments
 (0)