From ad875a6aed543191ae52d7f7cc713aa58f180dae Mon Sep 17 00:00:00 2001 From: Nikita Shulga Date: Fri, 17 Mar 2023 13:09:44 -0700 Subject: [PATCH] Use python3 instead of python --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index b28a977bdcc9..c5bc455b6b21 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -34,8 +34,8 @@ jobs: run: | mkdir wheelhouse-1 for i in wheelhouse/*; do - python -mwheel unpack $i - python -mwheel pack triton-2.0.0 --build-number 1 --dest-dir wheelhouse-1 + python3 -mwheel unpack $i + python3 -mwheel pack triton-2.0.0 --build-number 1 --dest-dir wheelhouse-1 rm -rf triton-2.0.0 done