Skip to content

Commit 46cbf44

Browse files
upgrade pyinstaller to 6.17.0
1 parent 461f78b commit 46cbf44

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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: |

requirements.d/pyinstaller.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pyinstaller==6.17.0

0 commit comments

Comments
 (0)