We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 359c055 commit edd2186Copy full SHA for edd2186
.github/workflows/pythonapp.yml
@@ -2,7 +2,6 @@ name: Python application
2
on:
3
push:
4
branches:
5
- - master
6
- devel
7
8
jobs:
@@ -18,9 +17,15 @@ jobs:
18
17
19
- name: 跑起来~
20
run: |
+ echo "安装uv"
21
+ curl -LsSf https://astral.sh/uv/install.sh | sh
22
+ uv python install 3.12
23
+ uv venv build-uv-venv
24
+ source build-uv-venv/bin/activate
25
+ echo "安装uv+启用虚拟环境"
26
ls -lh
27
echo "==================="
- pip install -U --break-system-package -r requireument.txt
28
+ uv pip install -r requireument.txt
29
pyinstaller main.spec
30
31
0 commit comments