mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
macOS: Get python from python.org to avoid grahical issues
This commit is contained in:
parent
a011e762df
commit
dade1ce20d
1 changed files with 8 additions and 4 deletions
12
.github/workflows/macos-package.yml
vendored
12
.github/workflows/macos-package.yml
vendored
|
@ -11,10 +11,14 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.x'
|
||||
- name: Set up python
|
||||
env:
|
||||
PYVER: '3.9.6'
|
||||
PYVER_SHORT: '3.9'
|
||||
run: |
|
||||
wget -O python.pkg "https://www.python.org/ftp/python/${PYVER}/python-${PYVER}-macosx10.9.pkg"
|
||||
sudo installer -pkg python.pkg -target /
|
||||
echo "/Library/Frameworks/Python.framework/Versions/${PYVER_SHORT}/bin" >> $GITHUB_PATH
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
|
|
Loading…
Add table
Reference in a new issue