Skip to content

Commit 2a9830f

Browse files
committed
Update build.yml
1 parent 6bf71b6 commit 2a9830f

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/build.yml

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

17-
- name: Set up Python
18-
uses: actions/setup-python@v5
19-
with:
20-
python-version: 3.9
17+
18+
- name: Build Python from source
19+
run: |
20+
curl -O https://www.python.org/ftp/python/3.9.21/Python-3.9.21.tgz
21+
tar xzf Python-3.9.21.tgz
22+
cd Python-3.9.21
23+
./configure MACOSX_DEPLOYMENT_TARGET=10.9
24+
make
25+
make install
2126
2227
- name: Install backend dependencies
2328
id: install-backend-deps

0 commit comments

Comments
 (0)