Skip to content

Commit

Permalink
[Release Only Changes] Remove git commit hash in wheel name (triton-l…
Browse files Browse the repository at this point in the history
…ang#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
``
  • Loading branch information
atalman authored Dec 11, 2024
1 parent 35c6c7c commit dbc771e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ def get_git_commit_hash(length=8):

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

0 comments on commit dbc771e

Please sign in to comment.