File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,11 @@ binary_common: &binary_common
37
37
build_version :
38
38
description : " version number of release binary; by default, build a nightly"
39
39
type : string
40
- default : " "
40
+ default : " 0.5.0 "
41
41
pytorch_version :
42
42
description : " PyTorch version to build against; by default, use a nightly"
43
43
type : string
44
- default : " "
44
+ default : " 1.4.0 "
45
45
# Don't edit these
46
46
python_version :
47
47
description : " Python version to build against (e.g., 3.7)"
Original file line number Diff line number Diff line change @@ -37,11 +37,11 @@ binary_common: &binary_common
37
37
build_version:
38
38
description: "version number of release binary; by default, build a nightly"
39
39
type: string
40
- default: ""
40
+ default: "0.5.0 "
41
41
pytorch_version:
42
42
description: "PyTorch version to build against; by default, use a nightly"
43
43
type: string
44
- default: ""
44
+ default: "1.4.0 "
45
45
# Don't edit these
46
46
python_version:
47
47
description: "Python version to build against (e.g., 3.7)"
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def get_dist(pkgname):
30
30
return None
31
31
32
32
33
- version = '0.5.0a0 '
33
+ version = '0.5.0 '
34
34
sha = 'Unknown'
35
35
package_name = 'torchvision'
36
36
@@ -43,8 +43,8 @@ def get_dist(pkgname):
43
43
44
44
if os .getenv ('BUILD_VERSION' ):
45
45
version = os .getenv ('BUILD_VERSION' )
46
- elif sha != 'Unknown' :
47
- version += '+' + sha [:7 ]
46
+ # elif sha != 'Unknown':
47
+ # version += '+' + sha[:7]
48
48
print ("Building wheel {}-{}" .format (package_name , version ))
49
49
50
50
You can’t perform that action at this time.
0 commit comments