Skip to content

Commit d96b84e

Browse files
committed
v0.6.0-release
1 parent 7d2ea90 commit d96b84e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/scripts/nova_dir.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export BUILD_FROM_NOVA=1
1616
## Override existing ENV VAR in Nova for Release
1717
export CHANNEL="test"
1818
export PIP_INSTALL_TORCH="pip install torch --index-url https://download.pytorch.org/whl/${CU_VERSION}"
19-
export PYTORCH_S3_BUCKET_PATH="s3://pytorch/whl/test/${CU_VERSION}/"
19+
export PYTORCH_S3_BUCKET_PATH="s3://pytorch/whl/${CU_VERSION}/"
2020

2121
## Overwrite existing ENV VAR in Nova
2222
if [[ "$CONDA_ENV" != "" ]]; then export CONDA_RUN="conda run --no-capture-output -p ${CONDA_ENV}" && echo "$CONDA_RUN"; fi

fbgemm_gpu/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ def generate_package_version(cls, package_name: str, variant_version: str):
260260
# Remove the local version identifier, if any (e.g. 0.4.0rc0.post0+git.6a63116c.dirty => 0.4.0rc0.post0)
261261
# Then remove post0 (keep postN for N > 0) (e.g. 0.4.0rc0.post0 => 0.4.0rc0)
262262
version = re.sub(".post0$", "", gitversion.version_from_git().split("+")[0])
263+
version = 0.6.0
263264
version = str(version) + variant_version
264265
print(f"[SETUP.PY] Setting the full package version string: {version}")
265266
return version

0 commit comments

Comments
 (0)