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 27770cc commit a08c1a8
Show file tree
Hide file tree
Showing 2 changed files with 3 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 @@ -9,15 +9,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup python 3.11
- name: Setup Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install requirements
run: pip install -r requirements.txt pyinstaller
- name: Generate UI scripts from .ui files
run: pyuic5 -o optimization_methods/gui/MainWindowUi.py optimization_methods/gui/MainWindow.ui
- name: Generate Windows package
- name: Generate artifact
run: pyinstaller --noconsole --onefile --icon=etc/icon.ico --name optimization_methods optimization_methods/__main__.py
- name: Upload artifact
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion optimization_methods/gui/MainWindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<string/>
</property>
<property name="placeholderText">
<string>Пример: x1 ** 2 + (x2 ** 0.5) * x3</string>
<string>Пример: x1 ** 2 + x2 ** 2 + x3 ** 2</string>
</property>
</widget>
</item>
Expand Down

0 comments on commit a08c1a8

Please sign in to comment.