We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bf71b6 commit 2a9830fCopy full SHA for 2a9830f
.github/workflows/build.yml
@@ -14,10 +14,15 @@ jobs:
14
- name: Check out Git repository
15
uses: actions/checkout@v1
16
17
- - name: Set up Python
18
- uses: actions/setup-python@v5
19
- with:
20
- python-version: 3.9
+
+ - name: Build Python from source
+ run: |
+ 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
26
27
- name: Install backend dependencies
28
id: install-backend-deps
0 commit comments