Skip to content

Commit 00053aa

Browse files
committed
Fix Python setup in CI
1 parent 199f69d commit 00053aa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ jobs:
7373
set -eux
7474
${{ env.CC }} --version
7575
python --version
76-
pip install -U pip
77-
pip install -r requirements.in
76+
python -m pip --version
77+
python -m pip install -r requirements.txt
7878
7979
- name: Download bleeding edge Godot 🏗️
8080
uses: dsnopek/action-download-artifact@1322f74e2dac9feed2ee76a32d9ae1ca3b4cf4e9
@@ -165,8 +165,8 @@ jobs:
165165
run: |
166166
set -eux
167167
python --version
168-
pip install -U pip
169-
pip install -r requirements.in
168+
python -m pip --version
169+
python -m pip install -r requirements.txt
170170
171171
- name: Download bleeding edge Godot 🏗️
172172
uses: dsnopek/action-download-artifact@1322f74e2dac9feed2ee76a32d9ae1ca3b4cf4e9

0 commit comments

Comments
 (0)