Skip to content

Commit c576258

Browse files
committed
Fix the windows release build to use uv
1 parent 22bd51d commit c576258

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.circleci/config.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,20 +95,16 @@ jobs:
9595
command: mkdir C:\Users\circleci\dist
9696

9797
- run:
98-
name: Upgrade pip
99-
command: python -m pip install --upgrade pip
98+
name: Install uv
99+
command: python -m pip install uv
100100

101101
- run:
102102
name: Install python dependencies
103-
command: python -m pip install -r requirements.txt
103+
command: uv sync
104104

105-
- run: python -m pip install wheel
105+
- run: uv add ordered-set nuitka
106106

107-
- run: python -m pip install ordered-set
108-
109-
- run: python -m pip install nuitka
110-
111-
- run: python -m nuitka --standalone --assume-yes-for-downloads --include-data-files=VERSION=VERSION --include-data-files=server_config.cfg=server_config.cfg --include-data-dir=static=static --include-data-dir=templates=templates --windows-icon-from-ico=static/favicon.ico ./planarally.py
107+
- run: uv run -m nuitka --standalone --assume-yes-for-downloads --include-data-files=VERSION=VERSION --include-data-files=server_config.cfg=server_config.cfg --include-data-dir=static=static --include-data-dir=templates=templates --windows-icon-from-ico=static/favicon.ico ./planarally.py
112108

113109
- run:
114110
name: Zip artifacts

0 commit comments

Comments
 (0)