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 0006ad7 commit d4d83cf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build optimization_methods
on:
push:
jobs:
build-app:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.11
- run: pip install -r requirements.txt pyinstaller
- run: pyinstaller --noconsole --onefile --icon=etc/icon.ico optimization_methods/__main__.py
- uses: actions/upload-artifact@v2
with:
name: optimization_methods
path: dist/*
retention-days: 2
Binary file added etc/icon.ico
Binary file not shown.
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
numpy~=1.26.2
PyQt5~=5.15.10
scipy~=1.11.4
sympy~=1.12

0 comments on commit d4d83cf

Please sign in to comment.