diff --git a/.github/workflows/1.build_release.yml b/.github/workflows/1.build_release.yml index e82ac61b..3774bca8 100644 --- a/.github/workflows/1.build_release.yml +++ b/.github/workflows/1.build_release.yml @@ -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 diff --git a/.github/workflows/2.realtime_release.yml b/.github/workflows/2.realtime_release.yml index 37d70c03..fae993af 100644 --- a/.github/workflows/2.realtime_release.yml +++ b/.github/workflows/2.realtime_release.yml @@ -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 diff --git a/app/main_window.py b/app/main_window.py index 95313c10..882ce83d 100644 --- a/app/main_window.py +++ b/app/main_window.py @@ -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)