Skip to content

Commit 63b0fb5

Browse files
committed
dep update
1 parent dfbcf39 commit 63b0fb5

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/windows.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333

3434
- name: Install dependencies
3535
run: |
36-
python -m pip install --upgrade pip
37-
pip install -r requirements.txt
36+
python3 -m pip install --upgrade pip
37+
python3 -m pip install -r requirements.txt
3838
3939
- name: Download External Data Release
4040
id: download_data
@@ -70,13 +70,13 @@ jobs:
7070
LLtag: ${{ env.LLtag }}
7171
LVtag: ${{ env.LVtag }}
7272
run: |
73-
python -m pip install ${{ matrix.builder }}
73+
# python3 -m pip install ${{ matrix.builder }}
7474
7575
if ('${{ matrix.builder }}' -eq 'nuitka') {
7676
$env:NUITKA_CACHE_DIR = "nuitka_cache"
77-
nuitka --onefile --windows-uac-admin --include-data-dir="data/"="data/" install_windows.py --output-dir="dist" --output-file="install_windows_nuitka" --assume-yes-for-downloads --enable-plugins="tk-inter" --enable-console --mingw64
77+
python3 -m nuitka --onefile --windows-uac-admin --include-data-dir="data/"="data/" install_windows.py --output-dir="dist" --output-file="install_windows_nuitka" --assume-yes-for-downloads --enable-plugins="tk-inter" --enable-console --mingw64
7878
} else {
79-
pyinstaller --onefile --uac-admin --add-data "data/:data/" install_windows.py --distpath dist --name install_windows_pyinstaller
79+
python3 -m pyinstaller --onefile --uac-admin --add-data "data/:data/" install_windows.py --distpath dist --name install_windows_pyinstaller
8080
}
8181
8282
- name: Save Cache
@@ -96,7 +96,7 @@ jobs:
9696
- name: Download and Install QQ Software
9797
run: |
9898
# Download QQ software
99-
python3 -m pip install requests
99+
# python3 -m pip install requests
100100
python3 get_qqnt.py QQInstaller.exe windows ntDownloadX64Url
101101
# Install QQ silently
102102
Start-Process -FilePath QQInstaller.exe -ArgumentList '/S' -Wait

install_windows_nuitka.exe

9.73 MB
Binary file not shown.

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# mirror
2-
-i https://pypi.tuna.tsinghua.edu.cn/simple
3-
--extra-index-url https://pypi.org/simple
2+
# -i https://pypi.org/simple
3+
# --extra-index-url https://pypi.tuna.tsinghua.edu.cn/simple
44

5-
requests~=2.32.1
6-
psutil~=5.9.8
7-
rich~=13.7.1
5+
requests~=2.32
6+
psutil~=7.0
7+
rich~=14.1
88

99
# bundles_python_application_tools
10-
nuitka~=2.2.3
11-
pyinstaller~=6.7.0
10+
nuitka~=2.7
11+
pyinstaller~=6.14

0 commit comments

Comments
 (0)