File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ jobs:
279279 - name : Build Borg fat binaries (${{ matrix.binary }})
280280 if : ${{ matrix.binary && startsWith(github.ref, 'refs/tags/') }}
281281 run : |
282- pip install ' pyinstaller==6.14.2'
282+ pip install -r requirements.d/ pyinstaller.txt
283283 mkdir -p dist/binary
284284 # Ensure locally built binaries in ./dist/binary are found during tox tests
285285 echo "$GITHUB_WORKSPACE/dist/binary" >> "$GITHUB_PATH"
@@ -429,7 +429,7 @@ jobs:
429429 tox -e py311-mfusepy
430430
431431 if [[ "${{ matrix.do_binaries }}" == "true" && "${{ startsWith(github.ref, 'refs/tags/') }}" == "true" ]]; then
432- python -m pip install ' pyinstaller==6.14.2'
432+ python -m pip install -r requirements.d/ pyinstaller.txt
433433 mkdir -p dist/binary
434434 pyinstaller --clean --distpath=dist/binary scripts/borg.exe.spec
435435 pushd dist/binary
@@ -576,7 +576,7 @@ jobs:
576576 . env/bin/activate
577577 # python -m pip install --upgrade pip
578578 # pip install --upgrade setuptools build wheel
579- pip install pyinstaller==6.14.2
579+ pip install -r requirements.d/ pyinstaller.txt
580580
581581 - name : Build
582582 run : |
Original file line number Diff line number Diff line change 1+ pyinstaller==6.17.0
You can’t perform that action at this time.
0 commit comments