Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmarks/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def get_git_commit_hash(length=8):

setup(
name="triton-kernels-benchmark",
version="3.5.0" + get_git_commit_hash(),
version="3.6.0" + get_git_commit_hash(),
packages=find_packages(),
install_requires=[
"torch>=2.6",
Expand Down
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.5.0)$'
smv_tag_whitelist = r'^(v3.6.0)$'
smv_branch_whitelist = r'^main$'
smv_remote_whitelist = None
smv_released_pattern = r'^tags/.*$'
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.5.0'
__version__ = '3.6.0'

# ---------------------------------------
# Note: import order is significant here.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ def get_triton_version_suffix():


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

# Dynamically define supported Python versions and classifiers
MIN_PYTHON = (3, 10)
Expand Down
Loading