Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Фикс сборки
Browse files Browse the repository at this point in the history
  • Loading branch information
rkolovanov committed Dec 5, 2023
1 parent cfdb5b9 commit 26d8466
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
with:
python-version: 3.11
- run: pip install -r requirements.txt pyinstaller
- run: pyuic -o optimization_methods/gui/MainWindowUi.py optimization_methods/gui/MainWindow.ui
- run: pyinstaller --noconsole --onefile --icon=etc/icon.ico --add-data="optimization_methods/gui/MainWindow.ui;." --name optimization_methods optimization_methods/__main__.py
- run: pyuic5 -o optimization_methods/gui/MainWindowUi.py optimization_methods/gui/MainWindow.ui
- run: pyinstaller --noconsole --onefile --icon=etc/icon.ico --name optimization_methods optimization_methods/__main__.py
- uses: actions/upload-artifact@v2
with:
name: optimization_methods
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
numpy~=1.26.2
PyQt5~=5.15.10
PyQt5~=5.15.9
scipy~=1.11.4
sympy~=1.12
pyqt5-tools~=5.15.9

0 comments on commit 26d8466

Please sign in to comment.