Skip to content

Commit

Permalink
updates pyinstaller on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
MAKOMO committed Sep 20, 2023
1 parent 2c7e1da commit 6b9067f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions src/artisanlib/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4181,12 +4181,9 @@ def toggleExtraCurve2(self) -> None:

def addLanguage(self, locale:str, menu_entry:str) -> None:
languageAction = QAction(menu_entry, self)
if locale in ['ru']:
languageAction.setEnabled(False)
else:
languageAction.setCheckable(True)
languageAction.triggered.connect(self.change_local_action)
self.language_menu_actions[locale] = languageAction
languageAction.setCheckable(True)
languageAction.triggered.connect(self.change_local_action)
self.language_menu_actions[locale] = languageAction
if self.languageMenu is not None:
self.languageMenu.addAction(languageAction)
if self.locale_str == locale:
Expand Down
2 changes: 1 addition & 1 deletion src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ PyQtWebEngine==5.15.6; (sys_platform=='darwin' and platform_release<'20.0') or (
PyQt6==6.5.2; (sys_platform=='darwin' and platform_release>='20.0') or (platform_system=='Windows' and python_version>'3.10') or platform_system=='Linux'
PyQt6-WebEngine==6.5.0; (sys_platform=='darwin' and platform_release>='20.0') or (platform_system=='Windows' and python_version>'3.10') or platform_system=='Linux'
###
pyinstaller==5.13.0; platform_system=='Linux' # on Windows pyinstaller is separately installed (see above)
pyinstaller==5.13.2; platform_system=='Linux' # on Windows pyinstaller is separately installed (see above)
###
### Qt build tools not part of PyQt but required by build-derived
qt5-tools==5.15.2.1.3; (sys_platform=='darwin' and platform_release<'20.0') or (platform_system=='Windows' and python_version<'3.9')
Expand Down

0 comments on commit 6b9067f

Please sign in to comment.