We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 157d6ed commit fa84ed2Copy full SHA for fa84ed2
.github/workflows/build.yml
@@ -14,14 +14,18 @@ jobs:
14
- name: Check out Git repository
15
uses: actions/checkout@v1
16
17
- - name: Prepare Python setup
18
- id: prepare-python-setup
19
- run: echo "MACOSX_DEPLOYMENT_TARGET=10.9" >> $GITHUB_ENV
+ # - name: Set up Python
+ # uses: actions/setup-python@v5
+ # with:
20
+ # python-version: 3.9
21
- - name: Set up Python
22
- uses: actions/setup-python@v5
23
- with:
24
- python-version: 3.9
+ - name: Set up Pytho
+ id: setup-python
+ 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
29
30
- name: Install backend dependencies
31
id: install-backend-deps
0 commit comments