Skip to content

Commit

Permalink
switched out python for uv more
Browse files Browse the repository at this point in the history
  • Loading branch information
lunamidori5 committed Jan 8, 2025
1 parent 9ba7ce6 commit 258ee2c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions PackageManagers/AUR/pkgbuild-all
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ build() {
cd workfolder

uv venv --seed
.venv/bin/pip install --no-cache-dir -v pyinstaller pytz
.venv/bin/pip install --no-cache-dir -v -r requirements.txt
uv pip install --no-cache-dir -v pyinstaller pytz
uv pip install --no-cache-dir -v -r requirements.txt

.venv/bin/pyinstaller --optimize 2 --onefile helper_app.py
.venv/bin/pyinstaller --optimize 2 --onefile midori_ai_login_app.py
.venv/bin/pyinstaller --optimize 2 --onefile midori_ai_updater.py
.venv/bin/pyinstaller --optimize 2 --onefile midori_ai_file_manager.py
uv run pyinstaller --optimize 2 --onefile helper_app.py
uv run pyinstaller --optimize 2 --onefile midori_ai_login_app.py
uv run pyinstaller --optimize 2 --onefile midori_ai_updater.py
uv run pyinstaller --optimize 2 --onefile midori_ai_file_manager.py

cd subsystem-manager-2

Expand Down

0 comments on commit 258ee2c

Please sign in to comment.