Skip to content

Commit 37ee724

Browse files
committed
Fix build
Signed-off-by: Alexey Akimov <lex.akimov23@gmail.com>
1 parent edd506c commit 37ee724

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ jobs:
116116
cache-dependency-path: requirements.txt
117117

118118
- name: Install dependencies
119-
run: pip install build
119+
run: |
120+
pip install -r requirements.txt
121+
pip install build setuptools
120122
121123
- name: Build package
122124
run: |
@@ -256,7 +258,9 @@ jobs:
256258
cache-dependency-path: requirements.txt
257259

258260
- name: Install dependencies
259-
run: pip install twine
261+
run: |
262+
pip install -r requirements.txt
263+
pip install twine
260264
261265
- name: Download Python packages
262266
uses: actions/download-artifact@v5

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ shtab==1.7.2
99
pytest==8.4.2
1010
pytest-repeat==0.9.4
1111
setuptools==80.9.0
12-
nuitka==2.8.1
12+
nuitka==2.8.4
1313
twine==6.2.0

0 commit comments

Comments
 (0)