Skip to content

Commit c875773

Browse files
authored
[Release-only] Bump version to 3.3.1 release, turn off publishing to pypi until we needed (#6807)
- Bump version to 3.3.1. - Disable publishing to pypi step. so that we don't release it untill we are ready
1 parent b79de50 commit c875773

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
path: ./wheelhouse/*.whl
9191

9292
- name: Upload wheels to PyPI
93-
if: ${{ matrix.config.arch == 'x86_64' }}
93+
if: false
9494
run: |
9595
python3 -m pip install twine --upgrade --user
9696
python3 -m twine upload wheelhouse/* -u __token__ -p ${{ secrets.PYPY_API_TOKEN }}

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.2.0)$'
148+
smv_tag_whitelist = r'^(v3.3.1)$'
149149
smv_branch_whitelist = r'^main$'
150150
smv_remote_whitelist = None
151151
smv_released_pattern = r'^tags/.*$'

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ def get_git_version_suffix():
748748

749749
setup(
750750
name=os.environ.get("TRITON_WHEEL_NAME", "triton"),
751-
version="3.3.0" + get_git_version_suffix() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""),
751+
version="3.3.1" + get_git_version_suffix() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""),
752752
author="Philippe Tillet",
753753
author_email="[email protected]",
754754
description="A language and compiler for custom Deep Learning operations",

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.3.0'
2+
__version__ = '3.3.1'
33

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

0 commit comments

Comments
 (0)