setupEM 0.3.3__tar.gz → 0.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {setupem-0.3.3 → setupem-0.3.4}/PKG-INFO +1 -1
- {setupem-0.3.3 → setupem-0.3.4}/pyproject.toml +1 -1
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM/setupEM.py +1 -1
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM/setupThermal.py +1 -1
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM/stackup_editor.py +1 -1
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM.egg-info/PKG-INFO +1 -1
- {setupem-0.3.3 → setupem-0.3.4}/README.md +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/setup.cfg +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM/__init__.py +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM/__main__.py +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM/data/SG13G2_100um.xml +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM/data/SG13G2_200um.xml +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM/data/SG13G2_nosub.xml +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM/setup_common.py +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM.egg-info/SOURCES.txt +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM.egg-info/dependency_links.txt +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM.egg-info/entry_points.txt +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM.egg-info/requires.txt +0 -0
- {setupem-0.3.3 → setupem-0.3.4}/src/setupEM.egg-info/top_level.txt +0 -0
|
@@ -38,7 +38,7 @@ from PySide6.QtCore import Qt, QRegularExpression, QProcess, QRect, QStandardPat
|
|
|
38
38
|
from gds2palace import *
|
|
39
39
|
|
|
40
40
|
# shared building blocks used by both setupEM.py and setupThermal.py
|
|
41
|
-
from setup_common import (
|
|
41
|
+
from .setup_common import (
|
|
42
42
|
EDIT_STYLE_OPTIONAL, EDIT_STYLE_REQUIRED, COMBO_STYLE_REQUIRED, COMBO_STYLE_OPTIONAL,
|
|
43
43
|
FileDropLineEdit, FileInputTab, PythonHighlighter, CodeEditor,
|
|
44
44
|
VectorWidget, PopUpWindow, CreateModelTabBase, MainWindowBase,
|
|
@@ -38,7 +38,7 @@ from PySide6.QtCore import Qt, QRegularExpression, QProcess, QRect, QStandardPat
|
|
|
38
38
|
from gds2palace import *
|
|
39
39
|
|
|
40
40
|
# shared building blocks used by both setupEM.py and setupThermal.py
|
|
41
|
-
from setup_common import (
|
|
41
|
+
from .setup_common import (
|
|
42
42
|
EDIT_STYLE_OPTIONAL, EDIT_STYLE_REQUIRED, COMBO_STYLE_REQUIRED, COMBO_STYLE_OPTIONAL,
|
|
43
43
|
FileDropLineEdit, FileInputTab, PythonHighlighter, CodeEditor,
|
|
44
44
|
VectorWidget, PopUpWindow, CreateModelTabBase, MainWindowBase,
|
|
@@ -46,7 +46,7 @@ from PySide6.QtGui import QColor, QFontMetrics, QKeySequence, QAction
|
|
|
46
46
|
from PySide6.QtCore import Qt, QTimer, Signal
|
|
47
47
|
|
|
48
48
|
from gds2palace import stackup_reader, stackup_writer
|
|
49
|
-
from setup_common import VectorWidget
|
|
49
|
+
from .setup_common import VectorWidget
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
# ------------------------------------------------------------------
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|