mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
macOS: fix workflow by invoking python3 not python
This commit is contained in:
parent
56dc087e8b
commit
cfa07e6c90
1 changed files with 3 additions and 3 deletions
6
.github/workflows/macos-package.yml
vendored
6
.github/workflows/macos-package.yml
vendored
|
@ -21,8 +21,8 @@ jobs:
|
||||||
echo "/Library/Frameworks/Python.framework/Versions/${PYVER_SHORT}/bin" >> $GITHUB_PATH
|
echo "/Library/Frameworks/Python.framework/Versions/${PYVER_SHORT}/bin" >> $GITHUB_PATH
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python -m pip install --no-binary=Pillow \
|
python3 -m pip install --no-binary=Pillow \
|
||||||
Pillow attrs configobj py2app pycotap pysol-cards random2 setuptools six
|
Pillow attrs configobj py2app pycotap pysol-cards random2 setuptools six
|
||||||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||||
brew install create-dmg
|
brew install create-dmg
|
||||||
|
@ -36,7 +36,7 @@ jobs:
|
||||||
make rules mo
|
make rules mo
|
||||||
- name: Create the executable .app
|
- name: Create the executable .app
|
||||||
run: |
|
run: |
|
||||||
PYTHONPATH="." python setup_osx.py py2app
|
PYTHONPATH="." python3 setup_osx.py py2app
|
||||||
zip -q -r -X PySolFC-app.zip dist
|
zip -q -r -X PySolFC-app.zip dist
|
||||||
- name: Make the .dmg for easy installation
|
- name: Make the .dmg for easy installation
|
||||||
run:
|
run:
|
||||||
|
|
Loading…
Add table
Reference in a new issue