Skip to content

Commit

Permalink
Preparing builds (#1558)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmassa authored Nov 7, 2019
1 parent 3b0879d commit efb0b26
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ binary_common: &binary_common
pytorch_version:
description: "PyTorch version to build against; by default, use a nightly"
type: string
default: "1.3.0"
default: "1.3.1"
# Don't edit these
python_version:
description: "Python version to build against (e.g., 3.7)"
Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ binary_common: &binary_common
pytorch_version:
description: "PyTorch version to build against; by default, use a nightly"
type: string
default: "1.3.0"
default: "1.3.1"
# Don't edit these
python_version:
description: "Python version to build against (e.g., 3.7)"
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_dist(pkgname):
return None


version = '0.4.2a0'
version = '0.4.2'
sha = 'Unknown'
package_name = 'torchvision'

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

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


Expand Down

0 comments on commit efb0b26

Please sign in to comment.