diff --git a/docs/conf.py b/docs/conf.py index c01b1a8c9e34..f8e2f45354b4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -145,7 +145,7 @@ def documenter(app, obj, parent): autosummary_generate = True # versioning config -smv_tag_whitelist = r'^(v3.6.0)$' +smv_tag_whitelist = r'^(v3.7.0)$' smv_branch_whitelist = r'^main$' smv_remote_whitelist = None smv_released_pattern = r'^tags/.*$' diff --git a/python/triton/__init__.py b/python/triton/__init__.py index a1e768c975eb..addeb42ecd6f 100644 --- a/python/triton/__init__.py +++ b/python/triton/__init__.py @@ -1,5 +1,5 @@ """isort:skip_file""" -__version__ = '3.6.0' +__version__ = '3.7.0' # --------------------------------------- # Note: import order is significant here. diff --git a/setup.py b/setup.py index fccb4ef17e2e..8cccc31a10fb 100644 --- a/setup.py +++ b/setup.py @@ -808,7 +808,7 @@ def get_triton_version_suffix(): # keep it separate for easy substitution -TRITON_VERSION = "3.6.0" + get_triton_version_suffix() +TRITON_VERSION = "3.7.0" + get_triton_version_suffix() # Dynamically define supported Python versions and classifiers MIN_PYTHON = (3, 10)