diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9d0da6a6..668148fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,12 +18,12 @@ jobs: - name: Install environment run: | - py -m venv ./venv + python -m venv ./venv - name: Install dependencies run: | ./venv/scripts/activate - pip install -r requirements.txt + python -m pip install -r requirements.txt # For some reason the shiboken2.abi3.dll is not found properly, so I copy it instead Copy-Item .\venv\Lib\site-packages\shiboken2\shiboken2.abi3.dll .\venv\Lib\site-packages\PySide2\ -Force diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5fad7bff..d712a5df 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,12 +20,12 @@ jobs: - name: Install environment run: | - py -m venv ./venv + python -m venv ./venv - name: Install dependencies run: | ./venv/scripts/activate - pip install -r requirements.txt + python -m pip install -r requirements.txt # For some reason the shiboken2.abi3.dll is not found properly, so I copy it instead Copy-Item .\venv\Lib\site-packages\shiboken2\shiboken2.abi3.dll .\venv\Lib\site-packages\PySide2\ -Force