We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a9830f commit 773d940Copy full SHA for 773d940
.github/workflows/build.yml
@@ -14,15 +14,11 @@ jobs:
14
- name: Check out Git repository
15
uses: actions/checkout@v1
16
17
-
18
- - name: Build Python from source
+ - name: Set up Python
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
+ brew install 'openssl@1.1' \
+ SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.7.sdk\
+ MACOSX_DEPLOYMENT_TARGET=10.9 pyenv install 3.9.21
26
27
- name: Install backend dependencies
28
id: install-backend-deps
0 commit comments