Skip to content

Commit

Permalink
build: update python 3.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
moesnow committed Oct 14, 2023
1 parent 952bd4d commit fd4ae11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/1.build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.11.6'
python-version: '3.12.0'
cache: 'pip'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/2.realtime_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.11.6'
python-version: '3.12.0'
cache: 'pip'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion app/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def initWindow(self):
# self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowMaximizeButtonHint)

self.resize(960, 780)
self.setWindowIcon(QIcon('assets\logo\March7th.ico'))
self.setWindowIcon(QIcon(r'assets\logo\March7th.ico'))
self.setWindowTitle("March7th Assistant")
# create splash screen
self.splashScreen = SplashScreen(self.windowIcon(), self)
Expand Down

0 comments on commit fd4ae11

Please sign in to comment.