bec-widgets 0.96.1__py3-none-any.whl → 0.96.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.
- CHANGELOG.md +8 -10
- PKG-INFO +1 -1
- bec_widgets/widgets/figure/plots/waveform/waveform.py +10 -3
- {bec_widgets-0.96.1.dist-info → bec_widgets-0.96.2.dist-info}/METADATA +1 -1
- {bec_widgets-0.96.1.dist-info → bec_widgets-0.96.2.dist-info}/RECORD +9 -9
- pyproject.toml +1 -1
- {bec_widgets-0.96.1.dist-info → bec_widgets-0.96.2.dist-info}/WHEEL +0 -0
- {bec_widgets-0.96.1.dist-info → bec_widgets-0.96.2.dist-info}/entry_points.txt +0 -0
- {bec_widgets-0.96.1.dist-info → bec_widgets-0.96.2.dist-info}/licenses/LICENSE +0 -0
CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## v0.96.2 (2024-08-22)
|
4
|
+
|
5
|
+
### Fix
|
6
|
+
|
7
|
+
* fix(waveform): validation of custom curves removed ([`af28574`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/af28574bd58457a05f1269f121db01ad627b5769))
|
8
|
+
|
9
|
+
* fix(waveform): skip validation for curves that are not BECCurve instances ([`617db36`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/617db36ed4932c8a0633724079b695bc67d5c77b))
|
10
|
+
|
3
11
|
## v0.96.1 (2024-08-22)
|
4
12
|
|
5
13
|
### Ci
|
@@ -149,13 +157,3 @@ Terminating client connections has to be done at the application level ([`198c1d
|
|
149
157
|
### Fix
|
150
158
|
|
151
159
|
* fix(positioner_box): icons fixed ([`281633d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/281633deff15b6879dac3a4f0770fa6949aaecdc))
|
152
|
-
|
153
|
-
### Refactor
|
154
|
-
|
155
|
-
* refactor: add button for positioner selection ([`0d190c5`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/0d190c5c5996e59fec4bdd44d2003e10e200b009))
|
156
|
-
|
157
|
-
### Test
|
158
|
-
|
159
|
-
* test(dap): wait for fit ([`6269009`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6269009e5451f830cdee58a514c7858483488a8d))
|
160
|
-
|
161
|
-
* test(auto-update): wait for rendering ([`6d2442d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6d2442d23c683fe92af13df982ce681c07e99cde))
|
PKG-INFO
CHANGED
@@ -376,6 +376,10 @@ class BECWaveform(BECPlotBase):
|
|
376
376
|
if len(self.curves) > 0:
|
377
377
|
# validate all curves
|
378
378
|
for curve in self.curves:
|
379
|
+
if not isinstance(curve, BECCurve):
|
380
|
+
continue
|
381
|
+
if curve.config.source == "custom":
|
382
|
+
continue
|
379
383
|
self._validate_x_axis_behaviour(curve.config.signals.y.name, x_name, x_entry, False)
|
380
384
|
self._switch_x_axis_item(
|
381
385
|
f"{x_name}-{x_entry}"
|
@@ -383,9 +387,12 @@ class BECWaveform(BECPlotBase):
|
|
383
387
|
else x_name
|
384
388
|
)
|
385
389
|
for curve_id, curve_config in zip(curve_ids, curve_configs):
|
386
|
-
if curve_config.signals
|
387
|
-
|
388
|
-
|
390
|
+
if curve_config.signals is None:
|
391
|
+
continue
|
392
|
+
if curve_config.signals.x is None:
|
393
|
+
continue
|
394
|
+
curve_config.signals.x.name = x_name
|
395
|
+
curve_config.signals.x.entry = x_entry
|
389
396
|
self.remove_curve(curve_id)
|
390
397
|
self.add_curve_by_config(curve_config)
|
391
398
|
|
@@ -2,11 +2,11 @@
|
|
2
2
|
.gitlab-ci.yml,sha256=9dZ_EvimZrDzG8MtII0qtBYMM_Nc6xqh2iFRds0rlvE,8370
|
3
3
|
.pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
|
4
4
|
.readthedocs.yaml,sha256=aSOc277LqXcsTI6lgvm_JY80lMlr69GbPKgivua2cS0,603
|
5
|
-
CHANGELOG.md,sha256=
|
5
|
+
CHANGELOG.md,sha256=JevFb8k7ihFuKfooyCqcyptPCHkn6vBmWWLI6YOyNHg,6717
|
6
6
|
LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
|
7
|
-
PKG-INFO,sha256=
|
7
|
+
PKG-INFO,sha256=xRvEZ02kp6ROhkDYvw-jCEJA0QqyjeTRUHYJnbgxgXY,1325
|
8
8
|
README.md,sha256=Od69x-RS85Hph0-WwWACwal4yUd67XkEn4APEfHhHFw,2649
|
9
|
-
pyproject.toml,sha256=
|
9
|
+
pyproject.toml,sha256=S3RcibQIzFA7_Ydzi3rai8TL0k5643CILs3-IMEJ_8s,2416
|
10
10
|
.git_hooks/pre-commit,sha256=n3RofIZHJl8zfJJIUomcMyYGFi_rwq4CC19z0snz3FI,286
|
11
11
|
.gitlab/issue_templates/bug_report_template.md,sha256=gAuyEwl7XlnebBrkiJ9AqffSNOywmr8vygUFWKTuQeI,386
|
12
12
|
.gitlab/issue_templates/documentation_update_template.md,sha256=FHLdb3TS_D9aL4CYZCjyXSulbaW5mrN2CmwTaeLPbNw,860
|
@@ -170,7 +170,7 @@ bec_widgets/widgets/figure/plots/image/image_processor.py,sha256=GeTtWjbldy6VejM
|
|
170
170
|
bec_widgets/widgets/figure/plots/motor_map/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
171
171
|
bec_widgets/widgets/figure/plots/motor_map/motor_map.py,sha256=wgARzsm98Y8SHPPwVp1LzNlXCxKEi6a8by8yYzIWsbY,18319
|
172
172
|
bec_widgets/widgets/figure/plots/waveform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
173
|
-
bec_widgets/widgets/figure/plots/waveform/waveform.py,sha256=
|
173
|
+
bec_widgets/widgets/figure/plots/waveform/waveform.py,sha256=uW9GQHWiVd3q63-yXjQ2uewDiiQ3t226swYTPQhaGoY,51579
|
174
174
|
bec_widgets/widgets/figure/plots/waveform/waveform_curve.py,sha256=ZwRxSfPHbMWEvgUC-mL2orpZvtxR-DcrYAFikkdWEzk,8654
|
175
175
|
bec_widgets/widgets/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
176
176
|
bec_widgets/widgets/image/bec_image_widget.pyproject,sha256=PHisdBo5_5UCApd27GkizzqgfdjsDx2bFZa_p9LiSW8,30
|
@@ -399,8 +399,8 @@ tests/unit_tests/test_configs/config_device_no_entry.yaml,sha256=hdvue9KLc_kfNzG
|
|
399
399
|
tests/unit_tests/test_configs/config_scan.yaml,sha256=vo484BbWOjA_e-h6bTjSV9k7QaQHrlAvx-z8wtY-P4E,1915
|
400
400
|
tests/unit_tests/test_msgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
401
401
|
tests/unit_tests/test_msgs/available_scans_message.py,sha256=m_z97hIrjHXXMa2Ex-UvsPmTxOYXfjxyJaGkIY6StTY,46532
|
402
|
-
bec_widgets-0.96.
|
403
|
-
bec_widgets-0.96.
|
404
|
-
bec_widgets-0.96.
|
405
|
-
bec_widgets-0.96.
|
406
|
-
bec_widgets-0.96.
|
402
|
+
bec_widgets-0.96.2.dist-info/METADATA,sha256=xRvEZ02kp6ROhkDYvw-jCEJA0QqyjeTRUHYJnbgxgXY,1325
|
403
|
+
bec_widgets-0.96.2.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
404
|
+
bec_widgets-0.96.2.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
|
405
|
+
bec_widgets-0.96.2.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
|
406
|
+
bec_widgets-0.96.2.dist-info/RECORD,,
|
pyproject.toml
CHANGED
File without changes
|
File without changes
|
File without changes
|