@@ -470,12 +470,12 @@ jobs:
470470 RAYLIB_PLATFORM : ${{ matrix.raylib-platform }}
471471 PKG_CONFIG_PATH : /usr/local/lib/pkgconfig
472472 run : |
473- ${{ matrix.python-version }} -m pip install --upgrade pip
474- ${{ matrix.python-version }} -m pip install --upgrade cffi
475- ${{ matrix.python-version }} -m pip install --upgrade wheel
476- ${{ matrix.python-version }} -m pip install --upgrade setuptools
477- ${{ matrix.python-version }} -m pip install --upgrade build
478- ${{ matrix.python-version }} -m build --wheel
473+ python3 -m pip install --upgrade pip
474+ python3 -m pip install --upgrade cffi
475+ python3 -m pip install --upgrade wheel
476+ python3 -m pip install --upgrade setuptools
477+ python3 -m pip install --upgrade build
478+ python3 -m build --wheel
479479 python3 -m pip install --upgrade auditwheel
480480 python3 -m pip install --upgrade patchelf
481481 python3 -m auditwheel repair dist/*.whl
@@ -499,11 +499,11 @@ jobs:
499499 shell : bash
500500 - name : Test
501501 run : |
502- ${{ matrix.python-version }} -m pip install --no-deps wheelhouse/*-py3-none-linux_aarch64.whl
502+ python3 -m pip install --no-deps wheelhouse/*-py3-none-linux_aarch64.whl
503503 # Clean up test wheels
504504 rm -f wheelhouse/*-py3-none-linux_aarch64.whl
505505 cd /
506- ${{ matrix.python-version }} -c 'import pyray; pyray.init_window(100,100,"test")' >/tmp/output 2>&1 || true
506+ python3 -c 'import pyray; pyray.init_window(100,100,"test")' >/tmp/output 2>&1 || true
507507 cat /tmp/output
508508 if grep -q "INFO: Initializing raylib" /tmp/output; then
509509 echo "Passed"
0 commit comments