Skip to content

Commit

Permalink
Update version to 3.2.0 (#5016)
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmaher authored Nov 5, 2024
1 parent 11d85f7 commit c802bb4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def documenter(app, obj, parent):
autosummary_generate = True

# versioning config
smv_tag_whitelist = r'^(v3.0.0)$'
smv_tag_whitelist = r'^(v3.2.0)$'
smv_branch_whitelist = r'^main$'
smv_remote_whitelist = None
smv_released_pattern = r'^tags/.*$'
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ def get_git_commit_hash(length=8):

setup(
name=os.environ.get("TRITON_WHEEL_NAME", "triton"),
version="3.0.0" + get_git_commit_hash() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""),
version="3.2.0" + get_git_commit_hash() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""),
author="Philippe Tillet",
author_email="phil@openai.com",
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.2.0'

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

0 comments on commit c802bb4

Please sign in to comment.