We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14b1bc9 commit 11da8e8Copy full SHA for 11da8e8
setup.py
@@ -29,7 +29,7 @@ def get_dist(pkgname):
29
return None
30
31
32
-version = '0.3.0a0'
+version = '0.3.0'
33
sha = 'Unknown'
34
package_name = os.getenv('TORCHVISION_PACKAGE_NAME', 'torchvision')
35
@@ -46,8 +46,6 @@ def get_dist(pkgname):
46
version = os.getenv('TORCHVISION_BUILD_VERSION')
47
if build_number > 1:
48
version += '.post' + str(build_number)
49
-elif sha != 'Unknown':
50
- version += '+' + sha[:7]
51
print("Building wheel {}-{}".format(package_name, version))
52
53
0 commit comments