Skip to content

Commit a9475c9

Browse files
authored
Remove wheel version suffix from wheels, set fail-fast to false for wheel builds (#6141)
1. TRITON_WHEEL_VERSION_SUFFIX is not needed. - For Release builds we want to have only version in suffix - For nightly git sha256 in suffix 2. Set fail-fast true if aarch64 build fails, x86 builds can still continue 3. Update whl version
1 parent 86906cf commit a9475c9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.config.runs_on }}
1717

1818
strategy:
19-
fail-fast: true
19+
fail-fast: false
2020
matrix:
2121
config:
2222
- {runs_on: ['self-hosted', 'CPU'], arch: 'x86_64'}
@@ -63,12 +63,10 @@ jobs:
6363
run: |
6464
# Make sure cibuildwheel is updated to latest, this will enable latest python builds
6565
python3 -m pip install cibuildwheel --upgrade --user
66-
export LATEST_DATE=$(TZ=UTC0 git show --quiet --date='format-local:%Y%m%d%H%M%S' --format="%cd")
6766
# Pass MAX_JOBS=4 because, at time of writing, the VM "only" has 32GB
6867
# of RAM and OOMs while building if we give it the default number of
6968
# workers (2 * NUM_CPUs).
7069
export CIBW_ENVIRONMENT="MAX_JOBS=4 \
71-
TRITON_WHEEL_VERSION_SUFFIX=-$LATEST_DATE \
7270
TRITON_BUILD_WITH_CLANG_LLD=1"
7371
7472
# many_linux_2_28 image comes with GCC 12.2.1, but not clang.

python/setup.py

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

747747
setup(
748748
name=os.environ.get("TRITON_WHEEL_NAME", "triton"),
749-
version="3.2.0" + get_git_version_suffix() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""),
749+
version="3.3.0" + get_git_version_suffix() + os.environ.get("TRITON_WHEEL_VERSION_SUFFIX", ""),
750750
author="Philippe Tillet",
751751
author_email="[email protected]",
752752
description="A language and compiler for custom Deep Learning operations",

0 commit comments

Comments
 (0)