Skip to content

Commit 37916e2

Browse files
committed
Change pyinstaller command to do 'uv sync'
1 parent fb514f0 commit 37916e2

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/pyinstaller-linux.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ jobs:
7272
python-version: "3.12.9"
7373
- name: Install dependencies
7474
run: |
75-
python3 -m pip install --upgrade pip setuptools wheel
76-
python3 -m pip install pyinstaller==6.7.0
77-
python3 -m pip install -r requirements.txt
75+
python3 -m pip install uv
76+
python3 -m uv pip install pyinstaller==6.12.0
77+
python3 -m uv sync --active
7878
- name: Create Executable with PyInstaller
7979
run: |
8080
pyinstaller \

.github/workflows/pyinstaller-macos_arm64.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ jobs:
9292
python-version: "3.12.9"
9393
- name: Install dependencies
9494
run: |
95-
python3 -m pip install --upgrade pip setuptools wheel
96-
python3 -m pip install pyinstaller==6.7.0
97-
python3 -m pip install -r requirements.txt
95+
python3 -m pip install uv
96+
python3 -m uv pip install pyinstaller==6.12.0
97+
python3 -m uv sync --active
9898
- name: Create Executable with Pyinstaller
9999
run: |
100100
pyinstaller \

.github/workflows/pyinstaller-macos_x86.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ jobs:
9090
python-version: "3.12.9"
9191
- name: Install dependencies
9292
run: |
93-
python3 -m pip install --upgrade pip pyinstaller setuptools wheel
94-
python3 -m pip install pyinstaller==6.7.0
95-
python3 -m pip install -r requirements.txt
93+
python3 -m pip install uv
94+
python3 -m uv pip install pyinstaller==6.12.0
95+
python3 -m uv sync --active
9696
- name: Create Executable with Pyinstaller
9797
run: |
9898
pyinstaller \

.github/workflows/pyinstaller-windows.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
run: |
5252
python.exe -m venv .\venv
5353
& .\venv\Scripts\activate
54-
pip install --upgrade pip setuptools wheel
55-
pip install pyinstaller==6.7.0 pypiwin32==223
56-
pip install -r requirements.txt
54+
python.exe -m pip install uv
55+
python.exe -m uv pip install pyinstaller==6.12.0 pypiwin32==223
56+
python.exe -m uv sync --active
5757
- name: Create Executable with Pyinstaller
5858
run: |
5959
& .\venv\Scripts\activate

0 commit comments

Comments
 (0)