pymodaq 4.3.0__py3-none-any.whl → 4.3.2__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.
Potentially problematic release.
This version of pymodaq might be problematic. Click here for more details.
- pymodaq/control_modules/move_utility_classes.py +7 -5
- pymodaq/dashboard.py +1 -0
- pymodaq/extensions/bayesian/utils.py +6 -3
- pymodaq/extensions/utils.py +4 -2
- pymodaq/resources/VERSION +1 -1
- pymodaq/utils/config.py +1 -1
- {pymodaq-4.3.0.dist-info → pymodaq-4.3.2.dist-info}/METADATA +1 -1
- {pymodaq-4.3.0.dist-info → pymodaq-4.3.2.dist-info}/RECORD +11 -11
- {pymodaq-4.3.0.dist-info → pymodaq-4.3.2.dist-info}/WHEEL +0 -0
- {pymodaq-4.3.0.dist-info → pymodaq-4.3.2.dist-info}/entry_points.txt +0 -0
- {pymodaq-4.3.0.dist-info → pymodaq-4.3.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -78,7 +78,11 @@ class MoveCommand:
|
|
|
78
78
|
self.value = value
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
def comon_parameters_fun(is_multiaxes
|
|
81
|
+
def comon_parameters_fun(is_multiaxes = False,
|
|
82
|
+
axes_names = [],
|
|
83
|
+
axis_names: Union[List, Dict] = [],
|
|
84
|
+
master = True,
|
|
85
|
+
epsilon = config('actuator', 'epsilon_default')):
|
|
82
86
|
"""Function returning the common and mandatory parameters that should be on the actuator plugin level
|
|
83
87
|
|
|
84
88
|
Parameters
|
|
@@ -212,6 +216,7 @@ class DAQ_Move_base(QObject):
|
|
|
212
216
|
self.move_is_done = False
|
|
213
217
|
self.parent = parent
|
|
214
218
|
self.stage = None
|
|
219
|
+
self.controller = None
|
|
215
220
|
self.status = edict(info="", controller=None, stage=None, initialized=False)
|
|
216
221
|
|
|
217
222
|
self._ispolling = True
|
|
@@ -225,10 +230,7 @@ class DAQ_Move_base(QObject):
|
|
|
225
230
|
self.settings.restoreState(params_state.saveState())
|
|
226
231
|
|
|
227
232
|
self.settings.sigTreeStateChanged.connect(self.send_param_status)
|
|
228
|
-
|
|
229
|
-
# 'axis').sigLimitsChanged.connect(lambda param,
|
|
230
|
-
# limits: self.send_param_status(
|
|
231
|
-
# param, [(param, 'limits', None)]))
|
|
233
|
+
|
|
232
234
|
if parent is not None:
|
|
233
235
|
self._title = parent.title
|
|
234
236
|
else:
|
pymodaq/dashboard.py
CHANGED
|
@@ -116,10 +116,13 @@ class BayesianAlgorithm:
|
|
|
116
116
|
|
|
117
117
|
@property
|
|
118
118
|
def best_individual(self) -> Union[np.ndarray, None]:
|
|
119
|
-
|
|
120
|
-
if max_param is None:
|
|
119
|
+
if self._algo.max is None:
|
|
121
120
|
return None
|
|
122
|
-
|
|
121
|
+
else:
|
|
122
|
+
max_param = self._algo.max.get('params', None)
|
|
123
|
+
if max_param is None:
|
|
124
|
+
return None
|
|
125
|
+
return self._algo.space.params_to_array(max_param)
|
|
123
126
|
|
|
124
127
|
def stopping(self, ind_iter: int, stopping_parameters: StoppingParameters):
|
|
125
128
|
if ind_iter >= stopping_parameters.niter:
|
pymodaq/extensions/utils.py
CHANGED
|
@@ -47,11 +47,13 @@ def get_extensions():
|
|
|
47
47
|
for mod in modules:
|
|
48
48
|
mod_in = importlib.import_module(f'{pkg.value}.extensions.{mod}')
|
|
49
49
|
if hasattr(mod_in, 'EXTENSION_NAME'):
|
|
50
|
-
extension_import.append({'pkg': pkg.value, 'module': mod,
|
|
50
|
+
extension_import.append({'pkg': pkg.value, 'module': mod,
|
|
51
|
+
'name': mod_in.EXTENSION_NAME,
|
|
51
52
|
'class_name': mod_in.CLASS_NAME})
|
|
52
53
|
|
|
53
54
|
except Exception as e: # pragma: no cover
|
|
54
|
-
logger.warning(f'Impossible to import the {pkg.value}.extensions.{mod} extension:
|
|
55
|
+
logger.warning(f'Impossible to import the {pkg.value}.extensions.{mod} extension: '
|
|
56
|
+
f'{str(e)}')
|
|
55
57
|
|
|
56
58
|
return extension_import
|
|
57
59
|
|
pymodaq/resources/VERSION
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
version = '4.3.
|
|
1
|
+
version = '4.3.2'
|
|
2
2
|
|
pymodaq/utils/config.py
CHANGED
|
@@ -20,7 +20,7 @@ except:
|
|
|
20
20
|
USER = 'unknown_user'
|
|
21
21
|
|
|
22
22
|
CONFIG_BASE_PATH = Path(environ['PROGRAMDATA']) if sys.platform == 'win32' else \
|
|
23
|
-
Path('Library/Application Support') if sys.platform == 'darwin' else Path('/etc')
|
|
23
|
+
Path('/Library/Application Support') if sys.platform == 'darwin' else Path('/etc')
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
KeyType = TypeVar('KeyType')
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pymodaq/__init__.py,sha256=boHjxPnKEAQUmOHKbnxlI8DHP1eM5IKSrrnd1EqkvHg,4295
|
|
2
|
-
pymodaq/dashboard.py,sha256=
|
|
2
|
+
pymodaq/dashboard.py,sha256=9SN2974L0FA-mUBWgAZ12aLzZmmFrQeUojdj3jstv44,64522
|
|
3
3
|
pymodaq/icon.ico,sha256=hOHHfNDENKphQvG1WDleSEYcHukneR2eRFJu8isIlD4,74359
|
|
4
4
|
pymodaq/splash.png,sha256=ow8IECF3tPRUMA4tf2tMu1aRiMaxx91_Y2ckVxkrmF0,53114
|
|
5
5
|
pymodaq/control_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -8,7 +8,7 @@ pymodaq/control_modules/daq_move_ui.py,sha256=euA8_utFfiscd9ahZxRTqqTiCSrNB4CKCL
|
|
|
8
8
|
pymodaq/control_modules/daq_viewer.py,sha256=5CYmdWHGE7sQApeMfdWNV3zbPyoxxYtzFlQ1PaEw4fI,57883
|
|
9
9
|
pymodaq/control_modules/daq_viewer_ui.py,sha256=FWP3jdIOR9vTgYqNaaodteGZ3dwgQ1GdWKrOpOAuSrs,15693
|
|
10
10
|
pymodaq/control_modules/mocks.py,sha256=hh_xSWp9g1UV3NAQVD9Ft9tNWfTsSvKU0OU0trgzP2w,1956
|
|
11
|
-
pymodaq/control_modules/move_utility_classes.py,sha256=
|
|
11
|
+
pymodaq/control_modules/move_utility_classes.py,sha256=bdO0O8qMcU4siW879XU7AAhcTLZz1s7vH_paDAD5G-8,33544
|
|
12
12
|
pymodaq/control_modules/utils.py,sha256=5YdSwq_lFJm7IalYWe_Hn1U4LUoUmo1gedvV9UguU0Y,20016
|
|
13
13
|
pymodaq/control_modules/viewer_utility_classes.py,sha256=mhUNZCx0SzaZJtxuKBMDcW5BfCY7hGPowJyQtQquwNE,26704
|
|
14
14
|
pymodaq/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -40,10 +40,10 @@ pymodaq/extensions/daq_logger.py,sha256=hEAb98fv1qJxcH9NPvaiLp1SPWkBVBwpujJhuyAi
|
|
|
40
40
|
pymodaq/extensions/daq_scan.py,sha256=CGBPrhLRHPmFJunKQ1aK5RgToXemzNEPdYSHn7e36DE,49414
|
|
41
41
|
pymodaq/extensions/daq_scan_ui.py,sha256=bYJaWBLQMl2Yu1PAxc-bCldh4keWXd6l12ttrHqExE0,10181
|
|
42
42
|
pymodaq/extensions/h5browser.py,sha256=eQZ8YhPHdiBCyHIn1JJJLn7OgZsc1XlcETgqdafofZs,1140
|
|
43
|
-
pymodaq/extensions/utils.py,sha256=
|
|
43
|
+
pymodaq/extensions/utils.py,sha256=3cF3-7hVxYY1xxi0Kz-ck_yHcWyO5gAFFghf8Zo01Z8,2026
|
|
44
44
|
pymodaq/extensions/bayesian/__init__.py,sha256=QMV9tq8Axi6YjoGj4UguBO8Zvuh26r5s91bm6YU7Itk,55
|
|
45
45
|
pymodaq/extensions/bayesian/bayesian_optimisation.py,sha256=zB6DoyHx6nsKHsl3G4T0Hsw8npl80gdEIwvNfx4DCrU,30033
|
|
46
|
-
pymodaq/extensions/bayesian/utils.py,sha256=
|
|
46
|
+
pymodaq/extensions/bayesian/utils.py,sha256=1m_NpYMr-Swg2ImtMvbh-XOxutkAVwc0M2BWeK_NMIg,15544
|
|
47
47
|
pymodaq/extensions/pid/__init__.py,sha256=YP5CemFZ54mFlFIhktct2SeOmkAuvxQm2y1Fiq5HiMQ,534
|
|
48
48
|
pymodaq/extensions/pid/daq_move_PID.py,sha256=EiTJz4fLcjVL1UxnFREu2oZEz2nl-iL5xgxf83YG85M,3090
|
|
49
49
|
pymodaq/extensions/pid/pid_controller.py,sha256=y0LTF_3N4mKEeRXyvgPycIy4FMPr-kRxLHgl1BV_YLc,28453
|
|
@@ -57,7 +57,7 @@ pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.py,sha256=1u7hWDaiwsZ
|
|
|
57
57
|
pymodaq/post_treatment/daq_measurement/daq_measurement_GUI.ui,sha256=PyzbCWPMkh5oIYYteZczXyWMeHKW9EJmM1QlzXhnyTk,7037
|
|
58
58
|
pymodaq/post_treatment/daq_measurement/daq_measurement_main.py,sha256=CAKwcWMOD86aXB8mbdxOK7e8nZRos5d59FzDtqK1QoY,17093
|
|
59
59
|
pymodaq/post_treatment/daq_measurement/process_from_QtDesigner_DAQ_Measurement_GUI.bat,sha256=e1tu2A67MS9fk3jhriF6saQgRxWIucIvNW92iWXFP6E,164
|
|
60
|
-
pymodaq/resources/VERSION,sha256=
|
|
60
|
+
pymodaq/resources/VERSION,sha256=sjnuS49ZtKszCS7BjQ3fAuL5c6ZSFLfQRHwgQvKEjxk,19
|
|
61
61
|
pymodaq/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
pymodaq/resources/config_template.toml,sha256=d3pofgIK5FxaRMELAI1qEsRcMD3GlYd87zZjDj9G9m0,3210
|
|
63
63
|
pymodaq/resources/preset_default.xml,sha256=Dt8iWLwPPOPtcG00JCVP-mh-G7KC6B0YN8hd8RQdnNI,27256
|
|
@@ -307,7 +307,7 @@ pymodaq/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
307
307
|
pymodaq/utils/array_manipulation.py,sha256=uMdiVVR2mU7j6Z4DKL5VGhUPqiWvFX2YK7RLMGdLyC8,10415
|
|
308
308
|
pymodaq/utils/calibration_camera.py,sha256=d3aAu0izXOdeLs-vyBaFfBuvyDGT3O-SreTuyd0Kvs4,8921
|
|
309
309
|
pymodaq/utils/chrono_timer.py,sha256=rwX8apS8B-IKhA0Cp2H9tLz0BRN7G3Pg5ptozvd3MKM,7244
|
|
310
|
-
pymodaq/utils/config.py,sha256=
|
|
310
|
+
pymodaq/utils/config.py,sha256=u-Q4af-tgXG7h8YitMGSPkigDxGoOYSEMHERQCF9mAM,16203
|
|
311
311
|
pymodaq/utils/conftests.py,sha256=3Ak8WEpa3EhAp73Yb1LLq8YFONhPqiL7gG9eSDIoTNc,58
|
|
312
312
|
pymodaq/utils/daq_utils.py,sha256=0jTrbT0aaZr3KaTgeDicmK9FbVnu3iaWBmNHnNJpr3A,28050
|
|
313
313
|
pymodaq/utils/data.py,sha256=7m48jht2GOerMNszM5Pwvv5bdYHa3uTPc8UI2YQPmJE,110327
|
|
@@ -437,8 +437,8 @@ pymodaq/utils/tcp_ip/__init__.py,sha256=1e_EK0AgvdoLAD_CSGGEaITZdy6OWCO7ih9IAIp7
|
|
|
437
437
|
pymodaq/utils/tcp_ip/mysocket.py,sha256=StAWj8dzHeMnbLj68Sel81uWFy-YkKVNRnVf7gXrESI,3452
|
|
438
438
|
pymodaq/utils/tcp_ip/serializer.py,sha256=oTQ24JNln_vRX4YADitTYiJplwFIdsta1ZDp6TOGMCA,27562
|
|
439
439
|
pymodaq/utils/tcp_ip/tcp_server_client.py,sha256=xIMTNgVW_rKK0yTi4FDNFLf85-Akb27Jz2LdrvOrP68,30660
|
|
440
|
-
pymodaq-4.3.
|
|
441
|
-
pymodaq-4.3.
|
|
442
|
-
pymodaq-4.3.
|
|
443
|
-
pymodaq-4.3.
|
|
444
|
-
pymodaq-4.3.
|
|
440
|
+
pymodaq-4.3.2.dist-info/METADATA,sha256=mpbKUYitkvphHcpbDoq-xnHedsXFQHmEclV9UCVyLgA,7657
|
|
441
|
+
pymodaq-4.3.2.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
442
|
+
pymodaq-4.3.2.dist-info/entry_points.txt,sha256=RAzdYNjvUT28I2eiCKki_g2NzXq0woWxhev6lwzwRv8,348
|
|
443
|
+
pymodaq-4.3.2.dist-info/licenses/LICENSE,sha256=VKOejxexXAe3XwfhAhcFGqeXQ12irxVHdeAojZwFEI8,1108
|
|
444
|
+
pymodaq-4.3.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|