pymodaq 5.0.15__tar.gz → 5.1.5__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.
Potentially problematic release.
This version of pymodaq might be problematic. Click here for more details.
- {pymodaq-5.0.15 → pymodaq-5.1.5}/.gitignore +3 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/PKG-INFO +61 -65
- {pymodaq-5.0.15 → pymodaq-5.1.5}/README.rst +54 -48
- {pymodaq-5.0.15 → pymodaq-5.1.5}/pyproject.toml +15 -22
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/__init__.py +23 -11
- pymodaq-5.1.5/src/pymodaq/control_modules/__init__.py +1 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/control_modules/daq_move.py +460 -248
- pymodaq-5.1.5/src/pymodaq/control_modules/daq_move_ui/factory.py +48 -0
- pymodaq-5.0.15/src/pymodaq/control_modules/daq_move_ui.py → pymodaq-5.1.5/src/pymodaq/control_modules/daq_move_ui/ui_base.py +168 -210
- pymodaq-5.1.5/src/pymodaq/control_modules/daq_move_ui/uis/binary.py +139 -0
- pymodaq-5.1.5/src/pymodaq/control_modules/daq_move_ui/uis/original.py +120 -0
- pymodaq-5.1.5/src/pymodaq/control_modules/daq_move_ui/uis/relative.py +124 -0
- pymodaq-5.1.5/src/pymodaq/control_modules/daq_move_ui/uis/simple.py +126 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/control_modules/daq_viewer.py +114 -102
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/control_modules/daq_viewer_ui.py +41 -31
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/control_modules/mocks.py +2 -2
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/control_modules/move_utility_classes.py +114 -42
- pymodaq-5.1.5/src/pymodaq/control_modules/thread_commands.py +137 -0
- pymodaq-5.1.5/src/pymodaq/control_modules/ui_utils.py +72 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/control_modules/utils.py +107 -63
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/control_modules/viewer_utility_classes.py +13 -17
- pymodaq-5.1.5/src/pymodaq/dashboard.py +2396 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/qt_less_standalone_module.py +48 -11
- pymodaq-5.1.5/src/pymodaq/extensions/__init__.py +25 -0
- pymodaq-5.1.5/src/pymodaq/extensions/adaptive/__init__.py +2 -0
- pymodaq-5.1.5/src/pymodaq/extensions/adaptive/adaptive_optimization.py +179 -0
- pymodaq-5.1.5/src/pymodaq/extensions/adaptive/loss_function/_1d_loss_functions.py +73 -0
- pymodaq-5.1.5/src/pymodaq/extensions/adaptive/loss_function/_2d_loss_functions.py +73 -0
- pymodaq-5.1.5/src/pymodaq/extensions/adaptive/loss_function/__init__.py +3 -0
- pymodaq-5.1.5/src/pymodaq/extensions/adaptive/loss_function/loss_factory.py +110 -0
- pymodaq-5.1.5/src/pymodaq/extensions/adaptive/utils.py +123 -0
- pymodaq-5.1.5/src/pymodaq/extensions/bayesian/__init__.py +2 -0
- pymodaq-5.1.5/src/pymodaq/extensions/bayesian/acquisition/__init__.py +2 -0
- pymodaq-5.1.5/src/pymodaq/extensions/bayesian/acquisition/acquisition_function_factory.py +80 -0
- pymodaq-5.1.5/src/pymodaq/extensions/bayesian/acquisition/base_acquisition_function.py +105 -0
- pymodaq-5.1.5/src/pymodaq/extensions/bayesian/bayesian_optimization.py +143 -0
- pymodaq-5.1.5/src/pymodaq/extensions/bayesian/utils.py +180 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/daq_logger/daq_logger.py +8 -13
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/daq_logger/h5logging.py +1 -1
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/daq_scan.py +32 -56
- pymodaq-5.1.5/src/pymodaq/extensions/data_mixer/daq_0Dviewer_DataMixer.py +97 -0
- pymodaq-5.1.5/src/pymodaq/extensions/data_mixer/data_mixer.py +262 -0
- pymodaq-5.1.5/src/pymodaq/extensions/data_mixer/model.py +108 -0
- pymodaq-5.1.5/src/pymodaq/extensions/data_mixer/models/equation_model.py +91 -0
- pymodaq-5.1.5/src/pymodaq/extensions/data_mixer/models/gaussian_fit_model.py +65 -0
- pymodaq-5.1.5/src/pymodaq/extensions/data_mixer/parser.py +53 -0
- pymodaq-5.1.5/src/pymodaq/extensions/data_mixer/utils.py +23 -0
- pymodaq-5.1.5/src/pymodaq/extensions/h5browser.py +9 -0
- pymodaq-5.1.5/src/pymodaq/extensions/optimizers_base/__init__.py +0 -0
- pymodaq-5.1.5/src/pymodaq/extensions/optimizers_base/optimizer.py +1016 -0
- pymodaq-5.1.5/src/pymodaq/extensions/optimizers_base/thread_commands.py +22 -0
- {pymodaq-5.0.15/src/pymodaq/extensions/bayesian → pymodaq-5.1.5/src/pymodaq/extensions/optimizers_base}/utils.py +189 -168
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/pid/actuator_controller.py +3 -2
- pymodaq-5.1.5/src/pymodaq/extensions/pid/daq_move_PID.py +154 -0
- pymodaq-5.1.5/src/pymodaq/extensions/pid/pid_controller.py +1016 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/pid/utils.py +8 -5
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/utils.py +22 -4
- pymodaq-5.1.5/src/pymodaq/resources/__init__.py +0 -0
- pymodaq-5.1.5/src/pymodaq/resources/config_template.toml +57 -0
- pymodaq-5.1.5/src/pymodaq/resources/preset_default.xml +1 -0
- pymodaq-5.1.5/src/pymodaq/utils/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/config.py +13 -4
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/daq_utils.py +14 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/data.py +1 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/gui_utils/loader_utils.py +25 -15
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/h5modules/module_saving.py +134 -22
- pymodaq-5.1.5/src/pymodaq/utils/leco/daq_move_LECODirector.py +217 -0
- pymodaq-5.1.5/src/pymodaq/utils/leco/daq_xDviewer_LECODirector.py +163 -0
- pymodaq-5.1.5/src/pymodaq/utils/leco/director_utils.py +74 -0
- pymodaq-5.1.5/src/pymodaq/utils/leco/leco_director.py +166 -0
- pymodaq-5.1.5/src/pymodaq/utils/leco/pymodaq_listener.py +364 -0
- pymodaq-5.1.5/src/pymodaq/utils/leco/rpc_method_definitions.py +43 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/leco/utils.py +25 -25
- pymodaq-5.1.5/src/pymodaq/utils/managers/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/managers/batchscan_manager.py +12 -11
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/managers/modules_manager.py +74 -33
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/managers/overshoot_manager.py +11 -10
- pymodaq-5.1.5/src/pymodaq/utils/managers/preset_manager.py +229 -0
- pymodaq-5.1.5/src/pymodaq/utils/managers/preset_manager_utils.py +262 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/managers/remote_manager.py +21 -16
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/scan_factory.py +18 -4
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/scan_selector.py +1 -3
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/scanner.py +38 -8
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/scanners/_1d_scanners.py +15 -46
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/scanners/_2d_scanners.py +21 -68
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/scanners/sequential.py +50 -31
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/scanners/tabular.py +45 -28
- pymodaq-5.0.15/src/pymodaq/dashboard.py +0 -1727
- pymodaq-5.0.15/src/pymodaq/extensions/__init__.py +0 -20
- pymodaq-5.0.15/src/pymodaq/extensions/bayesian/__init__.py +0 -2
- pymodaq-5.0.15/src/pymodaq/extensions/bayesian/bayesian_optimisation.py +0 -685
- pymodaq-5.0.15/src/pymodaq/extensions/h5browser.py +0 -40
- pymodaq-5.0.15/src/pymodaq/extensions/pid/daq_move_PID.py +0 -77
- pymodaq-5.0.15/src/pymodaq/extensions/pid/pid_controller.py +0 -690
- pymodaq-5.0.15/src/pymodaq/resources/preset_default.xml +0 -1
- pymodaq-5.0.15/src/pymodaq/utils/leco/daq_move_LECODirector.py +0 -178
- pymodaq-5.0.15/src/pymodaq/utils/leco/daq_xDviewer_LECODirector.py +0 -176
- pymodaq-5.0.15/src/pymodaq/utils/leco/desktop.ini +0 -2
- pymodaq-5.0.15/src/pymodaq/utils/leco/director_utils.py +0 -58
- pymodaq-5.0.15/src/pymodaq/utils/leco/leco_director.py +0 -89
- pymodaq-5.0.15/src/pymodaq/utils/leco/pymodaq_listener.py +0 -275
- pymodaq-5.0.15/src/pymodaq/utils/managers/preset_manager.py +0 -193
- pymodaq-5.0.15/src/pymodaq/utils/managers/preset_manager_utils.py +0 -206
- {pymodaq-5.0.15 → pymodaq-5.1.5}/LICENSE +0 -0
- {pymodaq-5.0.15/src/pymodaq/control_modules → pymodaq-5.1.5/src/pymodaq/control_modules/daq_move_ui}/__init__.py +0 -0
- {pymodaq-5.0.15/src/pymodaq/daq_utils → pymodaq-5.1.5/src/pymodaq/control_modules/daq_move_ui/uis}/__init__.py +0 -0
- {pymodaq-5.0.15/src/pymodaq/examples → pymodaq-5.1.5/src/pymodaq/daq_utils}/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/daq_utils/daq_utils.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.aliases +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.lvlps +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.lvproj +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Client.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Server_1Dgaussian.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_Server_2Dgaussian.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_read_cmd.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_read_float.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_read_int.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_send_data.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_send_int.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_send_scalar.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/DAQ_TCP_send_string.vi +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/client_state.ctl +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/Labview_TCP_Client/cmd_types.ctl +0 -0
- {pymodaq-5.0.15/src/pymodaq/extensions/daq_logger/db → pymodaq-5.1.5/src/pymodaq/examples}/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/function_plotter.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/nonlinearscanner.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/examples/tcp_client.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/console.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/daq_logger/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/daq_logger/abstract.py +0 -0
- {pymodaq-5.0.15/src/pymodaq/resources → pymodaq-5.1.5/src/pymodaq/extensions/daq_logger/db}/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/daq_logger/db/db_logger.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/daq_logger/db/db_logger_models.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/daq_scan_ui.py +0 -0
- {pymodaq-5.0.15/src/pymodaq/utils → pymodaq-5.1.5/src/pymodaq/extensions/data_mixer}/__init__.py +0 -0
- {pymodaq-5.0.15/src/pymodaq/utils/managers → pymodaq-5.1.5/src/pymodaq/extensions/data_mixer/models}/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/extensions/pid/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/icon.ico +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/post_treatment/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/post_treatment/load_and_plot.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/resources/setup_plugin.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/splash.png +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/array_manipulation.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/calibration_camera.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/chrono_timer.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/conftests.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/enums.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/exceptions.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/gui_utils/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/gui_utils/utils.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/gui_utils/widgets/lcd.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/h5modules/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/leco/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/logger.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/math_utils.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/messenger.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/parameter/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/parameter/utils.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/scan_config.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/scanners/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/scanner/utils.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/svg/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/svg/svg_renderer.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/svg/svg_view.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/svg/svg_viewer2D.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/tcp_ip/__init__.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/tcp_ip/mysocket.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/tcp_ip/serializer.py +0 -0
- {pymodaq-5.0.15 → pymodaq-5.1.5}/src/pymodaq/utils/tcp_ip/tcp_server_client.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pymodaq
|
|
3
|
-
Version: 5.
|
|
3
|
+
Version: 5.1.5
|
|
4
4
|
Summary: Modular Data Acquisition with Python
|
|
5
5
|
Project-URL: Homepage, http://pymodaq.cnrs.fr
|
|
6
6
|
Project-URL: Source, https://github.com/PyMoDAQ/PyMoDAQ
|
|
@@ -43,26 +43,16 @@ Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
|
43
43
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
44
44
|
Classifier: Topic :: Software Development :: User Interfaces
|
|
45
45
|
Requires-Python: >=3.8
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist: pint
|
|
52
|
-
Requires-Dist: pyleco<=0.4.2,>0.3; python_version >= '3.8'
|
|
53
|
-
Requires-Dist: pymodaq-data>=5.0.18
|
|
54
|
-
Requires-Dist: pymodaq-gui<5.0.23,>=5.0.17
|
|
46
|
+
Requires-Dist: adaptive
|
|
47
|
+
Requires-Dist: bayesian-optimization>=2.0
|
|
48
|
+
Requires-Dist: pyleco>0.3; python_version >= '3.8'
|
|
49
|
+
Requires-Dist: pymodaq-data>=5.0.21
|
|
50
|
+
Requires-Dist: pymodaq-gui>=5.0.32
|
|
55
51
|
Requires-Dist: pymodaq-plugin-manager>=0.0.17
|
|
56
52
|
Requires-Dist: pymodaq-plugins-mock>=5.0.5
|
|
57
|
-
Requires-Dist: pymodaq-utils
|
|
58
|
-
Requires-Dist: pyqtgraph>=0.12
|
|
59
|
-
Requires-Dist: python-dateutil
|
|
53
|
+
Requires-Dist: pymodaq-utils>=1.0.11
|
|
60
54
|
Requires-Dist: qtconsole
|
|
61
|
-
Requires-Dist: qtpy
|
|
62
|
-
Requires-Dist: scipy
|
|
63
|
-
Requires-Dist: setuptools>=60
|
|
64
55
|
Requires-Dist: simple-pid
|
|
65
|
-
Requires-Dist: toml
|
|
66
56
|
Provides-Extra: dev
|
|
67
57
|
Requires-Dist: flake8; extra == 'dev'
|
|
68
58
|
Requires-Dist: h5py; extra == 'dev'
|
|
@@ -77,6 +67,12 @@ Requires-Dist: pytest-xdist; extra == 'dev'
|
|
|
77
67
|
Requires-Dist: pytest-xvfb; extra == 'dev'
|
|
78
68
|
Description-Content-Type: text/x-rst
|
|
79
69
|
|
|
70
|
+
.. ############################################################
|
|
71
|
+
.. WARNING: This file is AUTO-GENERATED from README.rst.tpl.
|
|
72
|
+
.. ⚠️ DO NOT EDIT MANUALLY ⚠️
|
|
73
|
+
.. ############################################################
|
|
74
|
+
|
|
75
|
+
|
|
80
76
|
PyMoDAQ
|
|
81
77
|
#######
|
|
82
78
|
|
|
@@ -106,41 +102,41 @@ PyMoDAQ
|
|
|
106
102
|
+-------------+-------------------+------------------+---------------------+
|
|
107
103
|
|
|
108
104
|
|
|
109
|
-
.. |39-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
110
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
105
|
+
.. |39-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.9_pyqt5.svg
|
|
106
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
111
107
|
|
|
112
|
-
.. |39-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
113
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
108
|
+
.. |39-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.9_pyqt6.svg
|
|
109
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
114
110
|
|
|
115
|
-
.. |39-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
116
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
111
|
+
.. |39-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.9_pyside6.svg
|
|
112
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
117
113
|
|
|
118
|
-
.. |310-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
119
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
114
|
+
.. |310-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.10_pyqt5.svg
|
|
115
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
120
116
|
|
|
121
|
-
.. |310-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
122
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
117
|
+
.. |310-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.10_pyqt6.svg
|
|
118
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
123
119
|
|
|
124
|
-
.. |310-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
125
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
120
|
+
.. |310-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.10_pyside6.svg
|
|
121
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
126
122
|
|
|
127
|
-
.. |311-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
128
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
123
|
+
.. |311-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.11_pyqt5.svg
|
|
124
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
129
125
|
|
|
130
|
-
.. |311-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
131
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
126
|
+
.. |311-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.11_pyqt6.svg
|
|
127
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
132
128
|
|
|
133
|
-
.. |311-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
134
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
129
|
+
.. |311-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.11_pyside6.svg
|
|
130
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
135
131
|
|
|
136
|
-
.. |312-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
137
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
132
|
+
.. |312-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.12_pyqt5.svg
|
|
133
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
138
134
|
|
|
139
|
-
.. |312-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
140
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
135
|
+
.. |312-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.12_pyqt6.svg
|
|
136
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
141
137
|
|
|
142
|
-
.. |312-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
143
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
138
|
+
.. |312-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.12_pyside6.svg
|
|
139
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
144
140
|
|
|
145
141
|
|
|
146
142
|
+-------------+---------------------+--------------------+-----------------------+
|
|
@@ -155,41 +151,41 @@ PyMoDAQ
|
|
|
155
151
|
| Python 3.12 | |312-windows-pyqt5| ||312-windows-pyqt6| | |312-windows-pyside6| |
|
|
156
152
|
+-------------+---------------------+--------------------+-----------------------+
|
|
157
153
|
|
|
158
|
-
.. |39-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
159
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
154
|
+
.. |39-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.9_pyqt5.svg
|
|
155
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
160
156
|
|
|
161
|
-
.. |39-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
162
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
157
|
+
.. |39-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.9_pyqt6.svg
|
|
158
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
163
159
|
|
|
164
|
-
.. |39-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
165
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
160
|
+
.. |39-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.9_pyside6.svg
|
|
161
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
166
162
|
|
|
167
|
-
.. |310-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
168
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
163
|
+
.. |310-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.10_pyqt5.svg
|
|
164
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
169
165
|
|
|
170
|
-
.. |310-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
171
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
166
|
+
.. |310-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.10_pyqt6.svg
|
|
167
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
172
168
|
|
|
173
|
-
.. |310-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
174
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
169
|
+
.. |310-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.10_pyside6.svg
|
|
170
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
175
171
|
|
|
176
|
-
.. |311-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
177
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
172
|
+
.. |311-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.11_pyqt5.svg
|
|
173
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
178
174
|
|
|
179
|
-
.. |311-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
180
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
175
|
+
.. |311-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.11_pyqt6.svg
|
|
176
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
181
177
|
|
|
182
|
-
.. |311-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
183
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
178
|
+
.. |311-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.11_pyside6.svg
|
|
179
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
184
180
|
|
|
185
|
-
.. |312-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
186
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
181
|
+
.. |312-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.12_pyqt5.svg
|
|
182
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
187
183
|
|
|
188
|
-
.. |312-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
189
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
184
|
+
.. |312-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.12_pyqt6.svg
|
|
185
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
190
186
|
|
|
191
|
-
.. |312-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
192
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
187
|
+
.. |312-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.12_pyside6.svg
|
|
188
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
193
189
|
|
|
194
190
|
|
|
195
191
|
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
.. ############################################################
|
|
2
|
+
.. WARNING: This file is AUTO-GENERATED from README.rst.tpl.
|
|
3
|
+
.. ⚠️ DO NOT EDIT MANUALLY ⚠️
|
|
4
|
+
.. ############################################################
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
PyMoDAQ
|
|
2
8
|
#######
|
|
3
9
|
|
|
@@ -27,41 +33,41 @@ PyMoDAQ
|
|
|
27
33
|
+-------------+-------------------+------------------+---------------------+
|
|
28
34
|
|
|
29
35
|
|
|
30
|
-
.. |39-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
31
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
36
|
+
.. |39-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.9_pyqt5.svg
|
|
37
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
32
38
|
|
|
33
|
-
.. |39-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
34
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
39
|
+
.. |39-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.9_pyqt6.svg
|
|
40
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
35
41
|
|
|
36
|
-
.. |39-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
37
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
42
|
+
.. |39-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.9_pyside6.svg
|
|
43
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
38
44
|
|
|
39
|
-
.. |310-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
40
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
45
|
+
.. |310-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.10_pyqt5.svg
|
|
46
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
41
47
|
|
|
42
|
-
.. |310-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
43
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
48
|
+
.. |310-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.10_pyqt6.svg
|
|
49
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
44
50
|
|
|
45
|
-
.. |310-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
46
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
51
|
+
.. |310-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.10_pyside6.svg
|
|
52
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
47
53
|
|
|
48
|
-
.. |311-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
49
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
54
|
+
.. |311-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.11_pyqt5.svg
|
|
55
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
50
56
|
|
|
51
|
-
.. |311-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
52
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
57
|
+
.. |311-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.11_pyqt6.svg
|
|
58
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
53
59
|
|
|
54
|
-
.. |311-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
55
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
60
|
+
.. |311-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.11_pyside6.svg
|
|
61
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
56
62
|
|
|
57
|
-
.. |312-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
58
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
63
|
+
.. |312-linux-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.12_pyqt5.svg
|
|
64
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
59
65
|
|
|
60
|
-
.. |312-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
61
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
66
|
+
.. |312-linux-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.12_pyqt6.svg
|
|
67
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
62
68
|
|
|
63
|
-
.. |312-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
64
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
69
|
+
.. |312-linux-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Linux_3.12_pyside6.svg
|
|
70
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
65
71
|
|
|
66
72
|
|
|
67
73
|
+-------------+---------------------+--------------------+-----------------------+
|
|
@@ -76,41 +82,41 @@ PyMoDAQ
|
|
|
76
82
|
| Python 3.12 | |312-windows-pyqt5| ||312-windows-pyqt6| | |312-windows-pyside6| |
|
|
77
83
|
+-------------+---------------------+--------------------+-----------------------+
|
|
78
84
|
|
|
79
|
-
.. |39-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
80
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
85
|
+
.. |39-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.9_pyqt5.svg
|
|
86
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
81
87
|
|
|
82
|
-
.. |39-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
83
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
88
|
+
.. |39-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.9_pyqt6.svg
|
|
89
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
84
90
|
|
|
85
|
-
.. |39-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
86
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
91
|
+
.. |39-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.9_pyside6.svg
|
|
92
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
87
93
|
|
|
88
|
-
.. |310-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
89
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
94
|
+
.. |310-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.10_pyqt5.svg
|
|
95
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
90
96
|
|
|
91
|
-
.. |310-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
92
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
97
|
+
.. |310-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.10_pyqt6.svg
|
|
98
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
93
99
|
|
|
94
|
-
.. |310-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
95
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
100
|
+
.. |310-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.10_pyside6.svg
|
|
101
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
96
102
|
|
|
97
|
-
.. |311-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
98
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
103
|
+
.. |311-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.11_pyqt5.svg
|
|
104
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
99
105
|
|
|
100
|
-
.. |311-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
101
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
106
|
+
.. |311-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.11_pyqt6.svg
|
|
107
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
102
108
|
|
|
103
|
-
.. |311-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
104
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
109
|
+
.. |311-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.11_pyside6.svg
|
|
110
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
105
111
|
|
|
106
|
-
.. |312-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
107
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
112
|
+
.. |312-windows-pyqt5| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.12_pyqt5.svg
|
|
113
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
108
114
|
|
|
109
|
-
.. |312-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
110
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
115
|
+
.. |312-windows-pyqt6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.12_pyqt6.svg
|
|
116
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
111
117
|
|
|
112
|
-
.. |312-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/5.
|
|
113
|
-
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests.yml
|
|
118
|
+
.. |312-windows-pyside6| image:: https://raw.githubusercontent.com/PyMoDAQ/PyMoDAQ/badges/pymodaq/5.1.x/tests_Windows_3.12_pyside6.svg
|
|
119
|
+
:target: https://github.com/PyMoDAQ/PyMoDAQ/actions/workflows/tests-pymodaq.yml
|
|
114
120
|
|
|
115
121
|
|
|
116
122
|
|
|
@@ -31,32 +31,21 @@ classifiers = [
|
|
|
31
31
|
"Topic :: Software Development :: User Interfaces",
|
|
32
32
|
]
|
|
33
33
|
dependencies = [
|
|
34
|
-
"pymodaq_utils>=
|
|
35
|
-
"pymodaq_gui>=5.0.
|
|
36
|
-
"pymodaq_data>=5.0.
|
|
37
|
-
"easydict",
|
|
38
|
-
"multipledispatch",
|
|
39
|
-
"numpy < 2.0.0",
|
|
40
|
-
"packaging",
|
|
41
|
-
"pint",
|
|
34
|
+
"pymodaq_utils>=1.0.11",
|
|
35
|
+
"pymodaq_gui>=5.0.32",
|
|
36
|
+
"pymodaq_data>=5.0.21",
|
|
42
37
|
"pymodaq_plugin_manager>=0.0.17",
|
|
43
38
|
"pymodaq_plugins_mock>=5.0.5",
|
|
44
|
-
"pyqtgraph>=0.12",
|
|
45
|
-
"python-dateutil",
|
|
46
|
-
"qtpy",
|
|
47
|
-
"scipy",
|
|
48
|
-
"setuptools>=60",
|
|
49
39
|
"simple_pid",
|
|
50
|
-
"toml",
|
|
51
40
|
"qtconsole",
|
|
52
|
-
"pyleco>0.3
|
|
53
|
-
"bayesian-optimization
|
|
41
|
+
"pyleco>0.3; python_version>=\"3.8\"",
|
|
42
|
+
"bayesian-optimization>=2.0",
|
|
43
|
+
"adaptive",
|
|
54
44
|
]
|
|
55
45
|
|
|
56
|
-
|
|
57
46
|
[project.optional-dependencies]
|
|
58
47
|
dev = [
|
|
59
|
-
"hatch",
|
|
48
|
+
"hatch",
|
|
60
49
|
"flake8",
|
|
61
50
|
"h5py",
|
|
62
51
|
"pytest",
|
|
@@ -70,7 +59,6 @@ dev = [
|
|
|
70
59
|
"pytest-xvfb",
|
|
71
60
|
]
|
|
72
61
|
|
|
73
|
-
|
|
74
62
|
[project.scripts]
|
|
75
63
|
pymodaq_updater = "pymodaq.updater:main"
|
|
76
64
|
daq_logger = "pymodaq.extensions.daq_logger:main"
|
|
@@ -78,17 +66,19 @@ daq_move = "pymodaq.control_modules.daq_move:main"
|
|
|
78
66
|
daq_scan = "pymodaq.extensions.daq_scan:main"
|
|
79
67
|
daq_viewer = "pymodaq.control_modules.daq_viewer:main"
|
|
80
68
|
dashboard = "pymodaq.dashboard:main"
|
|
81
|
-
h5browser = "pymodaq.extensions.h5browser:main"
|
|
82
|
-
parameter_example = "pymodaq.examples.parameter_ex:main"
|
|
83
69
|
|
|
84
70
|
[project.urls]
|
|
85
71
|
Homepage = "http://pymodaq.cnrs.fr"
|
|
86
72
|
Source = "https://github.com/PyMoDAQ/PyMoDAQ"
|
|
87
73
|
Tracker = "https://github.com/PyMoDAQ/PyMoDAQ/issues"
|
|
88
74
|
|
|
75
|
+
[tool.hatch.version.raw-options]
|
|
76
|
+
search_parent_directories = true
|
|
77
|
+
fallback_version = "5.1.0"
|
|
78
|
+
git_describe_command = "python git_describe.py packages/pymodaq"
|
|
79
|
+
|
|
89
80
|
[tool.hatch.version]
|
|
90
81
|
source = "vcs"
|
|
91
|
-
fallback-version = '5.0.1'
|
|
92
82
|
|
|
93
83
|
[tool.hatch.build.targets.sdist]
|
|
94
84
|
include = [
|
|
@@ -100,3 +90,6 @@ omit = [
|
|
|
100
90
|
"*/examples/*",
|
|
101
91
|
"*/resources/*"
|
|
102
92
|
]
|
|
93
|
+
|
|
94
|
+
[tool.ruff]
|
|
95
|
+
line-length = 120
|
|
@@ -27,19 +27,23 @@ try:
|
|
|
27
27
|
|
|
28
28
|
from pymodaq_utils.config import Config
|
|
29
29
|
from pymodaq.utils.scanner.utils import register_scanners
|
|
30
|
+
from pymodaq.control_modules.ui_utils import register_uis
|
|
30
31
|
from pymodaq_data.plotting.plotter.plotter import register_plotter, PlotterFactory
|
|
31
32
|
|
|
32
33
|
# issue on windows when using .NET code within multithreads, this below allows it but requires
|
|
33
34
|
# the pywin32 (pythoncom) package
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
35
|
+
try:
|
|
36
|
+
if 'win' in sys.platform and importlib.util.find_spec('clr') is not None:
|
|
37
|
+
try:
|
|
38
|
+
import pythoncom
|
|
39
|
+
pythoncom.CoInitialize()
|
|
40
|
+
except ModuleNotFoundError as e:
|
|
41
|
+
infos = "You have installed plugins requiring the pywin32 package to work correctly," \
|
|
42
|
+
" please type in *pip install pywin32* and restart PyMoDAQ"
|
|
43
|
+
print(infos)
|
|
44
|
+
logger.warning(infos)
|
|
45
|
+
except ValueError:
|
|
46
|
+
pass
|
|
43
47
|
|
|
44
48
|
config = Config() # to ckeck for config file existence, otherwise create one
|
|
45
49
|
copy_preset()
|
|
@@ -59,6 +63,11 @@ try:
|
|
|
59
63
|
" You should update it."
|
|
60
64
|
print(infos)
|
|
61
65
|
logger.warning(infos)
|
|
66
|
+
logger.info('*************************************************************************')
|
|
67
|
+
logger.info(f"Registering UIs...")
|
|
68
|
+
register_uis(parent_module_name='pymodaq.control_modules.daq_move_ui')
|
|
69
|
+
logger.info(f"Done")
|
|
70
|
+
logger.info('************************')
|
|
62
71
|
|
|
63
72
|
logger.info('*************************************************************************')
|
|
64
73
|
logger.info(f"Getting the list of instrument plugins...")
|
|
@@ -74,9 +83,12 @@ try:
|
|
|
74
83
|
logger.info(f"Done")
|
|
75
84
|
logger.info('************************')
|
|
76
85
|
|
|
77
|
-
except Exception:
|
|
78
|
-
print("Couldn't create the local folder to store logs , presets...")
|
|
79
86
|
|
|
87
|
+
except Exception as e:
|
|
88
|
+
try:
|
|
89
|
+
logger.exception(str(e))
|
|
90
|
+
except Exception as e:
|
|
91
|
+
print(str(e))
|
|
80
92
|
|
|
81
93
|
|
|
82
94
|
except Exception as e:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from . import ui_utils # to avoid circular import
|