mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Use python, not py.
py is a shortcut that launches the *latest* version of Python on the machine. https://stackoverflow.com/a/50896577/632035 The build machines were updated to include python 3.9, so we were doing everything with 3.9 instead of 3.8. pyproj doesn't have a binary wheel for 3.9 on pypi yet, so we were falling back to building it from source, which we aren't able to do, breaking the build.
This commit is contained in:
parent
df00059d3f
commit
8c1f3e8116
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@ -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
|
||||
|
||||
|
||||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user