Skip to content

Commit fa84ed2

Browse files
committed
Update build.yml
1 parent 157d6ed commit fa84ed2

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,18 @@ jobs:
1414
- name: Check out Git repository
1515
uses: actions/checkout@v1
1616

17-
- name: Prepare Python setup
18-
id: prepare-python-setup
19-
run: echo "MACOSX_DEPLOYMENT_TARGET=10.9" >> $GITHUB_ENV
17+
# - name: Set up Python
18+
# uses: actions/setup-python@v5
19+
# with:
20+
# python-version: 3.9
2021

21-
- name: Set up Python
22-
uses: actions/setup-python@v5
23-
with:
24-
python-version: 3.9
22+
- name: Set up Pytho
23+
id: setup-python
24+
run: |
25+
curl https://pyenv.run | bash
26+
export PATH="$HOME/.pyenv/bin:$PATH"
27+
MACOSX_DEPLOYMENT_TARGET=10.9 pyenv install 3.9.21
28+
pyenv global 3.9.21
2529
2630
- name: Install backend dependencies
2731
id: install-backend-deps

0 commit comments

Comments
 (0)