Adapted the import statements to the new structure. eric7 release-10.1.0

Tue, 25 Oct 2022 08:46:11 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 25 Oct 2022 08:46:11 +0200
branch
eric7
changeset 47
3b9805bff70c
parent 46
ccd14067e6a2
child 48
3af51f1f4c6b

Adapted the import statements to the new structure.

ChangeLog file | annotate | diff | comparison | revisions
PluginPyInstaller.epj file | annotate | diff | comparison | revisions
PluginPyInstaller.py file | annotate | diff | comparison | revisions
PluginPyInstaller.zip file | annotate | diff | comparison | revisions
PyInstallerInterface/PyInstallerConfigDialog.py file | annotate | diff | comparison | revisions
PyInstallerInterface/PyInstallerExecDialog.py file | annotate | diff | comparison | revisions
--- a/ChangeLog	Wed Sep 21 16:45:00 2022 +0200
+++ b/ChangeLog	Tue Oct 25 08:46:11 2022 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 10.1.0
+- adapted the import statements to the new structure
+
 Version 10.0.0:
 - first release of the eric7 variant
 
--- a/PluginPyInstaller.epj	Wed Sep 21 16:45:00 2022 +0200
+++ b/PluginPyInstaller.epj	Tue Oct 25 08:46:11 2022 +0200
@@ -194,7 +194,7 @@
     ],
     "OTHERTOOLSPARMS": {
       "Black": {
-        "exclude": "/(\\.direnv|\\.eggs|\\.git|\\.hg|\\.mypy_cache|\\.nox|\\.tox|\\.venv|venv|\\.svn|_build|buck-out|build|dist|__pypackages__)/",
+        "exclude": "/(\\.direnv|\\.eggs|\\.git|\\.hg|\\.mypy_cache|\\.nox|\\.tox|\\.venv|venv|\\.svn|\\.ipynb_checkpoints|_build|buck-out|build|dist|__pypackages__)/",
         "extend-exclude": "",
         "force-exclude": "",
         "line-length": 88,
@@ -248,6 +248,7 @@
       "PyInstallerInterface/i18n/pyinstaller_ru.ts"
     ],
     "TRANSLATIONSBINPATH": "",
+    "TRANSLATIONSOURCESTARTPATH": "",
     "UICPARAMS": {
       "Package": "",
       "PackagesRoot": "",
--- a/PluginPyInstaller.py	Wed Sep 21 16:45:00 2022 +0200
+++ b/PluginPyInstaller.py	Tue Oct 25 08:46:11 2022 +0200
@@ -15,18 +15,17 @@
 from PyQt6.QtCore import pyqtSlot, QObject, QCoreApplication, QTranslator, QProcess
 from PyQt6.QtWidgets import QDialog
 
-from EricWidgets import EricMessageBox
-from EricGui.EricAction import EricAction
-from EricWidgets.EricApplication import ericApp
-
-import Utilities
+from eric7 import Utilities
+from eric7.EricGui.EricAction import EricAction
+from eric7.EricWidgets import EricMessageBox
+from eric7.EricWidgets.EricApplication import ericApp
 
 # Start-Of-Header
 name = "PyInstaller Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "10.0.0"
+version = "10.1.0"
 className = "PyInstallerPlugin"
 packageName = "PyInstallerInterface"
 shortDescription = "Show dialogs to configure and execute PyInstaller."
Binary file PluginPyInstaller.zip has changed
--- a/PyInstallerInterface/PyInstallerConfigDialog.py	Wed Sep 21 16:45:00 2022 +0200
+++ b/PyInstallerInterface/PyInstallerConfigDialog.py	Tue Oct 25 08:46:11 2022 +0200
@@ -12,12 +12,11 @@
 from PyQt6.QtCore import pyqtSlot
 from PyQt6.QtWidgets import QDialog, QDialogButtonBox
 
-from EricWidgets.EricPathPicker import EricPathPickerModes
+from eric7 import Globals
+from eric7.EricWidgets.EricPathPicker import EricPathPickerModes
 
 from .Ui_PyInstallerConfigDialog import Ui_PyInstallerConfigDialog
 
-import Globals
-
 
 class PyInstallerConfigDialog(QDialog, Ui_PyInstallerConfigDialog):
     """
--- a/PyInstallerInterface/PyInstallerExecDialog.py	Wed Sep 21 16:45:00 2022 +0200
+++ b/PyInstallerInterface/PyInstallerExecDialog.py	Tue Oct 25 08:46:11 2022 +0200
@@ -13,12 +13,11 @@
 from PyQt6.QtCore import pyqtSlot, QProcess, QTimer
 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton
 
-from EricWidgets import EricMessageBox
+from eric7 import Preferences
+from eric7.EricWidgets import EricMessageBox
 
 from .Ui_PyInstallerExecDialog import Ui_PyInstallerExecDialog
 
-import Preferences
-
 
 class PyInstallerExecDialog(QDialog, Ui_PyInstallerExecDialog):
     """

eric ide

mercurial