Skip to content

Commit 2c57396

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents ced96c2 + 959c7eb commit 2c57396

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/workflows/python-app.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
3+
4+
name: Build
5+
6+
on:
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
12+
runs-on: windows-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Set up Python 3.11
17+
uses: actions/setup-python@v3
18+
with:
19+
python-version: "3.11"
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install -r requirements.txt -U nuitka ordered-set zstandard
24+
25+
- name: Build Exe
26+
run:
27+
python -m nuitka --mingw64 --assume-yes-for-downloads --standalone --windows-console-mode=disable --jobs=8 --output-dir="build" --windows-icon-from-ico=icon.ico main.py
28+
- name: Upload ZIP
29+
uses: actions/upload-artifact@v4.3.1
30+
with:
31+
name: Aura-Text
32+
path: build

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ qt_material==2.14
1414
Requests==2.32.2
1515
roastedbyai==1.2.0
1616
pyqtdarktheme
17+
PyQt6-Fluent-Widgets==1.6.0
18+
PyQt6-QScintilla==2.14.1

0 commit comments

Comments
 (0)