tomwer 1.3.19__py3-none-any.whl → 1.3.21__py3-none-any.whl
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.
- tomwer/app/canvas_launcher/mainwindow.py +0 -1
- tomwer/core/process/reconstruction/nabu/utils.py +2 -0
- tomwer/utils.py +1 -4
- tomwer/version.py +1 -1
- {tomwer-1.3.19.dist-info → tomwer-1.3.21.dist-info}/METADATA +5 -19
- {tomwer-1.3.19.dist-info → tomwer-1.3.21.dist-info}/RECORD +12 -12
- {tomwer-1.3.19.dist-info → tomwer-1.3.21.dist-info}/WHEEL +1 -1
- /tomwer-1.3.19-py3.11-nspkg.pth → /tomwer-1.3.21-py3.11-nspkg.pth +0 -0
- {tomwer-1.3.19.dist-info → tomwer-1.3.21.dist-info}/LICENSE +0 -0
- {tomwer-1.3.19.dist-info → tomwer-1.3.21.dist-info}/entry_points.txt +0 -0
- {tomwer-1.3.19.dist-info → tomwer-1.3.21.dist-info}/namespace_packages.txt +0 -0
- {tomwer-1.3.19.dist-info → tomwer-1.3.21.dist-info}/top_level.txt +0 -0
@@ -281,7 +281,6 @@ class _OMain(ocMain):
|
|
281
281
|
signal.signal(signal.SIGINT, signal.SIG_DFL)
|
282
282
|
# Disable pyqtgraph's atexit and QApplication.aboutToQuit cleanup handlers.
|
283
283
|
pyqtgraph.setConfigOption("exitCleanup", False)
|
284
|
-
print("argv are", argv)
|
285
284
|
super().run(argv)
|
286
285
|
|
287
286
|
def argument_parser(self) -> argparse.ArgumentParser:
|
@@ -468,6 +468,8 @@ def nabu_std_err_has_error(errs: typing.Optional[bytes]):
|
|
468
468
|
or "PerformanceWarning" in line
|
469
469
|
or "jitify._init_module()" in line
|
470
470
|
or " unable to import 'siphash24.siphash13" in line
|
471
|
+
or "_create_built_program_from_source_cached" in line
|
472
|
+
or "prg.build(options_bytes," in line
|
471
473
|
)
|
472
474
|
|
473
475
|
if errs is None:
|
tomwer/utils.py
CHANGED
@@ -81,10 +81,7 @@ class LauncherCommand(_LauncherCommand):
|
|
81
81
|
"""Description of a command"""
|
82
82
|
|
83
83
|
def get_module(self):
|
84
|
-
"""Returns the python module to execute. If any.
|
85
|
-
|
86
|
-
:rtype: module
|
87
|
-
"""
|
84
|
+
"""Returns the python module to execute. If any."""
|
88
85
|
try:
|
89
86
|
module = importlib.import_module(self.module_name)
|
90
87
|
return module
|
tomwer/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tomwer
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.21
|
4
4
|
Summary: "tomography workflow tools"
|
5
5
|
Home-page: https://gitlab.esrf.fr/tomotools/tomwer
|
6
6
|
Author: data analysis unit
|
@@ -26,7 +26,7 @@ Requires-Dist: setuptools
|
|
26
26
|
Requires-Dist: psutil
|
27
27
|
Requires-Dist: silx[full] >=2.0
|
28
28
|
Requires-Dist: tomoscan >=2.0.0a11
|
29
|
-
Requires-Dist: nxtomo
|
29
|
+
Requires-Dist: nxtomo <1.3,>=1.2.3rc1
|
30
30
|
Requires-Dist: nxtomomill >=1.0dev
|
31
31
|
Requires-Dist: processview >=1.3
|
32
32
|
Requires-Dist: ewoks >=0.1.1
|
@@ -41,8 +41,6 @@ Requires-Dist: flake8 ; extra == '_dev_spec'
|
|
41
41
|
Requires-Dist: timeout-decorator ; extra == '_dev_spec'
|
42
42
|
Requires-Dist: pyopencl ; extra == '_dev_spec'
|
43
43
|
Provides-Extra: _full_base
|
44
|
-
Requires-Dist: orange-canvas-core ; extra == '_full_base'
|
45
|
-
Requires-Dist: orange-widget-base ; extra == '_full_base'
|
46
44
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == '_full_base'
|
47
45
|
Requires-Dist: rsyncmanager ; extra == '_full_base'
|
48
46
|
Requires-Dist: graypy ; extra == '_full_base'
|
@@ -59,8 +57,6 @@ Requires-Dist: tifffile ; extra == '_full_base'
|
|
59
57
|
Requires-Dist: hdf5plugin ; extra == '_full_base'
|
60
58
|
Requires-Dist: pyicat-plus ; extra == '_full_base'
|
61
59
|
Provides-Extra: dev
|
62
|
-
Requires-Dist: orange-canvas-core ; extra == 'dev'
|
63
|
-
Requires-Dist: orange-widget-base ; extra == 'dev'
|
64
60
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'dev'
|
65
61
|
Requires-Dist: rsyncmanager ; extra == 'dev'
|
66
62
|
Requires-Dist: graypy ; extra == 'dev'
|
@@ -84,8 +80,6 @@ Requires-Dist: flake8 ; extra == 'dev'
|
|
84
80
|
Requires-Dist: timeout-decorator ; extra == 'dev'
|
85
81
|
Requires-Dist: pyopencl ; extra == 'dev'
|
86
82
|
Provides-Extra: dev_no_cuda
|
87
|
-
Requires-Dist: orange-canvas-core ; extra == 'dev_no_cuda'
|
88
|
-
Requires-Dist: orange-widget-base ; extra == 'dev_no_cuda'
|
89
83
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'dev_no_cuda'
|
90
84
|
Requires-Dist: rsyncmanager ; extra == 'dev_no_cuda'
|
91
85
|
Requires-Dist: graypy ; extra == 'dev_no_cuda'
|
@@ -101,14 +95,12 @@ Requires-Dist: resource ; extra == 'dev_no_cuda'
|
|
101
95
|
Requires-Dist: tifffile ; extra == 'dev_no_cuda'
|
102
96
|
Requires-Dist: hdf5plugin ; extra == 'dev_no_cuda'
|
103
97
|
Requires-Dist: pyicat-plus ; extra == 'dev_no_cuda'
|
104
|
-
Requires-Dist: nabu
|
98
|
+
Requires-Dist: nabu <2024.2,>=2023.3.1dev ; extra == 'dev_no_cuda'
|
105
99
|
Requires-Dist: black ; extra == 'dev_no_cuda'
|
106
100
|
Requires-Dist: flake8 ; extra == 'dev_no_cuda'
|
107
101
|
Requires-Dist: timeout-decorator ; extra == 'dev_no_cuda'
|
108
102
|
Requires-Dist: pyopencl ; extra == 'dev_no_cuda'
|
109
103
|
Provides-Extra: doc
|
110
|
-
Requires-Dist: orange-canvas-core ; extra == 'doc'
|
111
|
-
Requires-Dist: orange-widget-base ; extra == 'doc'
|
112
104
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'doc'
|
113
105
|
Requires-Dist: rsyncmanager ; extra == 'doc'
|
114
106
|
Requires-Dist: graypy ; extra == 'doc'
|
@@ -124,7 +116,7 @@ Requires-Dist: resource ; extra == 'doc'
|
|
124
116
|
Requires-Dist: tifffile ; extra == 'doc'
|
125
117
|
Requires-Dist: hdf5plugin ; extra == 'doc'
|
126
118
|
Requires-Dist: pyicat-plus ; extra == 'doc'
|
127
|
-
Requires-Dist: nabu
|
119
|
+
Requires-Dist: nabu <2024.2,>=2023.3.1dev ; extra == 'doc'
|
128
120
|
Requires-Dist: Sphinx >=4.0.0 ; extra == 'doc'
|
129
121
|
Requires-Dist: nbsphinx ; extra == 'doc'
|
130
122
|
Requires-Dist: pandoc ; extra == 'doc'
|
@@ -133,8 +125,6 @@ Requires-Dist: pydata-sphinx-theme ; extra == 'doc'
|
|
133
125
|
Requires-Dist: sphinx-design ; extra == 'doc'
|
134
126
|
Requires-Dist: sphinx-autodoc-typehints ; extra == 'doc'
|
135
127
|
Provides-Extra: full
|
136
|
-
Requires-Dist: orange-canvas-core ; extra == 'full'
|
137
|
-
Requires-Dist: orange-widget-base ; extra == 'full'
|
138
128
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full'
|
139
129
|
Requires-Dist: rsyncmanager ; extra == 'full'
|
140
130
|
Requires-Dist: graypy ; extra == 'full'
|
@@ -154,8 +144,6 @@ Requires-Dist: nabu[full] >=2023.3.1dev ; extra == 'full'
|
|
154
144
|
Requires-Dist: pycuda <2024.1.1 ; extra == 'full'
|
155
145
|
Requires-Dist: scikit-cuda ; extra == 'full'
|
156
146
|
Provides-Extra: full_no_cuda
|
157
|
-
Requires-Dist: orange-canvas-core ; extra == 'full_no_cuda'
|
158
|
-
Requires-Dist: orange-widget-base ; extra == 'full_no_cuda'
|
159
147
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full_no_cuda'
|
160
148
|
Requires-Dist: rsyncmanager ; extra == 'full_no_cuda'
|
161
149
|
Requires-Dist: graypy ; extra == 'full_no_cuda'
|
@@ -171,10 +159,8 @@ Requires-Dist: resource ; extra == 'full_no_cuda'
|
|
171
159
|
Requires-Dist: tifffile ; extra == 'full_no_cuda'
|
172
160
|
Requires-Dist: hdf5plugin ; extra == 'full_no_cuda'
|
173
161
|
Requires-Dist: pyicat-plus ; extra == 'full_no_cuda'
|
174
|
-
Requires-Dist: nabu
|
162
|
+
Requires-Dist: nabu <2024.2,>=2023.3.1dev ; extra == 'full_no_cuda'
|
175
163
|
Provides-Extra: full_no_nabu
|
176
|
-
Requires-Dist: orange-canvas-core ; extra == 'full_no_nabu'
|
177
|
-
Requires-Dist: orange-widget-base ; extra == 'full_no_nabu'
|
178
164
|
Requires-Dist: ewoks[orange] >=0.1.1 ; extra == 'full_no_nabu'
|
179
165
|
Requires-Dist: rsyncmanager ; extra == 'full_no_nabu'
|
180
166
|
Requires-Dist: graypy ; extra == 'full_no_nabu'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tomwer-1.3.
|
1
|
+
tomwer-1.3.21-py3.11-nspkg.pth,sha256=UYCZtLWueceGiAlmXKRJUZ0TWQEubpPoQ1pVnAAsME0,502
|
2
2
|
orangecontrib/tomwer/__init__.py,sha256=B4DXy1gY_wXmNYa2aOfapmJb2mEuCAjoaNEGnpBs70g,148
|
3
3
|
orangecontrib/tomwer/state_summary.py,sha256=5_dPzweL3r0ye4ZfJo6IV2ThJI8fQhWoO2ySdJJajj8,1711
|
4
4
|
orangecontrib/tomwer/orange/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -219,8 +219,8 @@ orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.png,sha256=8XwGE5m
|
|
219
219
|
orangecontrib/tomwer/widgets/visualization/icons/volumeviewer.svg,sha256=2uT9_px6VBxkC6RxD0QrQVzcBusDlNVKwekh551EF0A,8454
|
220
220
|
tomwer/__init__.py,sha256=82Jp1abyG4UWdGuT4nNU7LxaUV6xxkOte5pIz3w69Do,1745
|
221
221
|
tomwer/__main__.py,sha256=jsDfWA2yl5am0dHQVkYwlKLxxqKNont6VDF-LusuawE,8575
|
222
|
-
tomwer/utils.py,sha256=
|
223
|
-
tomwer/version.py,sha256=
|
222
|
+
tomwer/utils.py,sha256=o6TW9xqGYyYLHUGvLiiYEiiDHP6lwWlX63jMLPNh374,8432
|
223
|
+
tomwer/version.py,sha256=8PXhlaf-KJdWTwZitiY1R4f6MihzpOrr5dupPob33gY,4387
|
224
224
|
tomwer/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
225
225
|
tomwer/app/axis.py,sha256=Ax0wlTp9u0Ll_3ax23QP5Ck16_M9Kop7wx0hAbXrXyM,6004
|
226
226
|
tomwer/app/canvas.py,sha256=RbQqgE7DuNjv4nGG6BNfnSevQO5_lCl7N71hGcLoxwE,1561
|
@@ -247,7 +247,7 @@ tomwer/app/zstitching.py,sha256=rOc-bwX7A-eMHo0x0dyMsQhzLgcAcyavJlZ3I_D0m5E,1287
|
|
247
247
|
tomwer/app/canvas_launcher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
248
248
|
tomwer/app/canvas_launcher/config.py,sha256=vGvyskE-mOLV4PPUverFhx7lQbGuE6E9747ctGcLodY,7164
|
249
249
|
tomwer/app/canvas_launcher/environ.py,sha256=t_sgLAugHUA8d9SR6CZ6HfUHmAjS7ZcSf8I5KiwRayA,2501
|
250
|
-
tomwer/app/canvas_launcher/mainwindow.py,sha256=
|
250
|
+
tomwer/app/canvas_launcher/mainwindow.py,sha256=EwAudIgIr_uFryDn1k0AhYoVDX7gQ3Ipg7sm59houTk,19114
|
251
251
|
tomwer/app/canvas_launcher/splash.py,sha256=2z3q5QwoQ_ad-a2UI0R8hR3252MWG7DggXPOgDZfgBA,560
|
252
252
|
tomwer/app/canvas_launcher/widgetsscheme.py,sha256=S4x1LO798fOxL3-g2WDuAh0T2Y_Kbg79DbH3siwKPiM,2859
|
253
253
|
tomwer/core/__init__.py,sha256=lLfviCLw9VdT6SQ_9eYhqFe8QtUA-Dv-JDGpgxQ8Yzs,1373
|
@@ -331,7 +331,7 @@ tomwer/core/process/reconstruction/nabu/nabuvolume.py,sha256=z7nyfXhMrp0Q3hAN3NY
|
|
331
331
|
tomwer/core/process/reconstruction/nabu/plane.py,sha256=Cgzth77M0pFgLDULmvmPj4bqFm5MvIMJ7Ien8mRqLsE,134
|
332
332
|
tomwer/core/process/reconstruction/nabu/settings.py,sha256=JpHKf0smiXeWC8i9Mj7h3g67teJ3Gqycd-Uwg2yzGOQ,2279
|
333
333
|
tomwer/core/process/reconstruction/nabu/target.py,sha256=_Z4gViprjR3Vm4KASqsASStLA9GM1wTyoi3Pg0PUSeg,1481
|
334
|
-
tomwer/core/process/reconstruction/nabu/utils.py,sha256=
|
334
|
+
tomwer/core/process/reconstruction/nabu/utils.py,sha256=zjEcGS0rET0kXyW26NkIf4aWtKw304DwnvOr1nGXt0E,18465
|
335
335
|
tomwer/core/process/reconstruction/normalization/__init__.py,sha256=TDtATpMVFkEOT93wLXLpW0A_TOeiQDiM7AWAqX4FIB0,119
|
336
336
|
tomwer/core/process/reconstruction/normalization/normalization.py,sha256=G-eAZIct47RvzvHNMbKsG4Dt58vTSKhvH-NnIMzxzOs,13210
|
337
337
|
tomwer/core/process/reconstruction/normalization/params.py,sha256=porWC6G5lQWF-4JB03B56uGmuMxjx3u0ZMums-Bh2p8,4790
|
@@ -776,10 +776,10 @@ tomwer/tests/test_utils.py,sha256=D0rNDSK6csEOYBY_7gD-4A3jp8rYAm8L1_Xg34A9I2s,30
|
|
776
776
|
tomwer/tests/utils.py,sha256=RAXx5A99WD4Vyuv_wjHBdr-Xu7UiThHRKw2eiB5GX10,107
|
777
777
|
tomwer/third_part/WaitingOverlay.py,sha256=GnqiytcJDp_24Cmz_2nZAP5HfpL3Yh7AzR2ATIusGsg,3906
|
778
778
|
tomwer/third_part/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
779
|
-
tomwer-1.3.
|
780
|
-
tomwer-1.3.
|
781
|
-
tomwer-1.3.
|
782
|
-
tomwer-1.3.
|
783
|
-
tomwer-1.3.
|
784
|
-
tomwer-1.3.
|
785
|
-
tomwer-1.3.
|
779
|
+
tomwer-1.3.21.dist-info/LICENSE,sha256=yR_hIZ1MfDh9x2_s23uFqBH7m5DgrBl9nJKkE37YChM,1877
|
780
|
+
tomwer-1.3.21.dist-info/METADATA,sha256=n7yg9MZT6SK37fHoLgaBIwO6Izqqe6-itPkhmwR487w,10734
|
781
|
+
tomwer-1.3.21.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
782
|
+
tomwer-1.3.21.dist-info/entry_points.txt,sha256=fIcDnCxjgwzfIylLYhUsFyiNZjZMxsfRQBxi4f-cJg8,440
|
783
|
+
tomwer-1.3.21.dist-info/namespace_packages.txt,sha256=Iut-JTfT11SZHHm77_ZeszD7pZDWXcTweCbvrJpqDyQ,14
|
784
|
+
tomwer-1.3.21.dist-info/top_level.txt,sha256=Yz5zKh0FPiImtzHYcPuztG1AO8-6KEpUWgoChGbA0Ys,21
|
785
|
+
tomwer-1.3.21.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|