Skip to content

Commit dbc771e

Browse files
authored
[Release Only Changes] Remove git commit hash in wheel name (triton-lang#5405)
For release we are not looking for something like : `` pytorch_triton-3.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `` not: `` triton-3.2.0+git35c6c7c6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl ``
1 parent 35c6c7c commit dbc771e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ def get_git_commit_hash(length=8):
695695

696696
setup(
697697
name=os.environ.get("TRITON_WHEEL_NAME", "triton"),
698-
version="3.2.0" + get_git_commit_hash() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""),
698+
version="3.2.0" + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""),
699699
author="Philippe Tillet",
700700
author_email="[email protected]",
701701
description="A language and compiler for custom Deep Learning operations",

0 commit comments

Comments
 (0)