Skip to content

Commit abce3c8

Browse files
Advance version 3.4.0->3.5.0 (#8058)
Related to triton-lang/triton#8012
1 parent c3ec927 commit abce3c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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.4.0)$'
148+
smv_tag_whitelist = r'^(v3.5.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.4.0'
2+
__version__ = '3.5.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
@@ -776,7 +776,7 @@ def get_git_version_suffix():
776776

777777

778778
# keep it separate for easy substitution
779-
TRITON_VERSION = "3.4.0" + get_git_version_suffix() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", "")
779+
TRITON_VERSION = "3.5.0" + get_git_version_suffix() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", "")
780780

781781
# Dynamically define supported Python versions and classifiers
782782
MIN_PYTHON = (3, 9)

0 commit comments

Comments
 (0)