Skip to content

Commit

Permalink
Update triton version to 3.1.0 for release 2.5.0 (#2190)
Browse files Browse the repository at this point in the history
Similar to: triton-lang/triton#4696
Since triton is building from this branch:
https://github.com/triton-lang/triton/tree/release/3.1.x
We need to bump this version as well.
This should fix failures on this PR:
pytorch/pytorch#135627

cc @EikanWang @chuanqi129
  • Loading branch information
atalman authored Sep 10, 2024
1 parent cc981fe commit 91b14bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ def get_install_requires():

setup(
name=os.environ.get("TRITON_WHEEL_NAME", "triton"),
version="3.0.0" + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""),
version="3.1.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
2 changes: 1 addition & 1 deletion python/triton/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""isort:skip_file"""
__version__ = '3.0.0'
__version__ = '3.1.0'

# ---------------------------------------
# Note: import order is significant here.
Expand Down

0 comments on commit 91b14bf

Please sign in to comment.