Skip to content

Commit 8528cf6

Browse files
authored
Bump to version 3.6.0 (#5520)
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent 146c37e commit 8528cf6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

benchmarks/setup.py

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

109109
setup(
110110
name="triton-kernels-benchmark",
111-
version="3.5.0" + get_git_commit_hash(),
111+
version="3.6.0" + get_git_commit_hash(),
112112
packages=find_packages(),
113113
install_requires=[
114114
"torch>=2.6",

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def documenter(app, obj, parent):
145145
autosummary_generate = True
146146

147147
# versioning config
148-
smv_tag_whitelist = r'^(v3.5.0)$'
148+
smv_tag_whitelist = r'^(v3.6.0)$'
149149
smv_branch_whitelist = r'^main$'
150150
smv_remote_whitelist = None
151151
smv_released_pattern = r'^tags/.*$'

python/triton/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""isort:skip_file"""
2-
__version__ = '3.5.0'
2+
__version__ = '3.6.0'
33

44
# ---------------------------------------
55
# Note: import order is significant here.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ def get_triton_version_suffix():
830830

831831

832832
# keep it separate for easy substitution
833-
TRITON_VERSION = "3.5.0" + get_triton_version_suffix()
833+
TRITON_VERSION = "3.6.0" + get_triton_version_suffix()
834834

835835
# Dynamically define supported Python versions and classifiers
836836
MIN_PYTHON = (3, 10)

0 commit comments

Comments
 (0)