bec-widgets 1.5.2__py3-none-any.whl → 1.5.3__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.
- .gitlab-ci.yml +6 -2
- CHANGELOG.md +13 -14
- PKG-INFO +1 -1
- bec_widgets/applications/alignment/alignment_1d/alignment_1d.py +5 -3
- {bec_widgets-1.5.2.dist-info → bec_widgets-1.5.3.dist-info}/METADATA +1 -1
- {bec_widgets-1.5.2.dist-info → bec_widgets-1.5.3.dist-info}/RECORD +10 -10
- pyproject.toml +1 -1
- {bec_widgets-1.5.2.dist-info → bec_widgets-1.5.3.dist-info}/WHEEL +0 -0
- {bec_widgets-1.5.2.dist-info → bec_widgets-1.5.3.dist-info}/entry_points.txt +0 -0
- {bec_widgets-1.5.2.dist-info → bec_widgets-1.5.3.dist-info}/licenses/LICENSE +0 -0
.gitlab-ci.yml
CHANGED
@@ -12,6 +12,9 @@ variables:
|
|
12
12
|
description: ophyd_devices branch
|
13
13
|
value: main
|
14
14
|
CHILD_PIPELINE_BRANCH: $CI_DEFAULT_BRANCH
|
15
|
+
CHECK_PKG_VERSIONS:
|
16
|
+
description: Whether to run additional tests against min/max/random selection of dependencies. Set to 1 for running.
|
17
|
+
value: 0
|
15
18
|
|
16
19
|
workflow:
|
17
20
|
rules:
|
@@ -31,8 +34,9 @@ include:
|
|
31
34
|
inputs:
|
32
35
|
stage: test
|
33
36
|
path: "."
|
34
|
-
pytest_args: "-v
|
35
|
-
|
37
|
+
pytest_args: "-v,--random-order,tests/unit_tests"
|
38
|
+
ignore_dep_group: "pyqt6"
|
39
|
+
pip_args: ".[dev,pyside6]"
|
36
40
|
|
37
41
|
# different stages in the pipeline
|
38
42
|
stages:
|
CHANGELOG.md
CHANGED
@@ -1,6 +1,19 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
3
|
|
4
|
+
## v1.5.3 (2024-11-21)
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
- **alignment_1d**: Fix imports after widget module refactor
|
9
|
+
([`e71e3b2`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e71e3b2956feb3f3051e538432133f6e85bbd5a8))
|
10
|
+
|
11
|
+
### Continuous Integration
|
12
|
+
|
13
|
+
- Fix ci syntax for package-dep-job
|
14
|
+
([`6e39bdb`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6e39bdbf53b147c8ff163527b45691835ce9a2eb))
|
15
|
+
|
16
|
+
|
4
17
|
## v1.5.2 (2024-11-18)
|
5
18
|
|
6
19
|
### Bug Fixes
|
@@ -200,17 +213,3 @@
|
|
200
213
|
|
201
214
|
- Rename 'compact' property -> 'compact_view'
|
202
215
|
([`6982711`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6982711fea5fb8a73845ed7c0692e3ec53ef7871))
|
203
|
-
|
204
|
-
- Alignment 1D update, make app window a main window (in .ui file)
|
205
|
-
([`0015f0e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/0015f0e2d62adc02d3ef334e1f6dbb2d0288fec6))
|
206
|
-
|
207
|
-
### Features
|
208
|
-
|
209
|
-
- New PositionerGroup widget
|
210
|
-
([`af9655d`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/af9655de0c541092437accfbaa779628a2f48ccb))
|
211
|
-
|
212
|
-
- Add 'expand_popup' property to CompactPopupWidget
|
213
|
-
([`e4121a0`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e4121a01cb6b8d496e630cd43bc642b994b8f310))
|
214
|
-
|
215
|
-
This property tells if expand should show a popup (by default), or if the widget should expand
|
216
|
-
in-place
|
PKG-INFO
CHANGED
@@ -18,9 +18,11 @@ from bec_widgets.utils import UILoader
|
|
18
18
|
from bec_widgets.utils.bec_dispatcher import BECDispatcher
|
19
19
|
from bec_widgets.utils.colors import get_accent_colors
|
20
20
|
from bec_widgets.widgets.control.buttons.stop_button.stop_button import StopButton
|
21
|
-
from bec_widgets.widgets.control.device_control.positioner_group import
|
22
|
-
|
23
|
-
|
21
|
+
from bec_widgets.widgets.control.device_control.positioner_group.positioner_group import (
|
22
|
+
PositionerGroup,
|
23
|
+
)
|
24
|
+
from bec_widgets.widgets.dap.lmfit_dialog.lmfit_dialog import LMFitDialog
|
25
|
+
from bec_widgets.widgets.plots.waveform.waveform_widget import BECWaveformWidget
|
24
26
|
from bec_widgets.widgets.progress.bec_progressbar.bec_progressbar import BECProgressBar
|
25
27
|
|
26
28
|
MODULE_PATH = os.path.dirname(bec_widgets.__file__)
|
@@ -1,12 +1,12 @@
|
|
1
1
|
.gitignore,sha256=cMQ1MLmnoR88aMCCJwUyfoTnufzl4-ckmHtlFUqHcT4,3253
|
2
|
-
.gitlab-ci.yml,sha256=
|
2
|
+
.gitlab-ci.yml,sha256=bAWGX_NR9rQZmv_bmyLXkEMRreWp0JzVNpsNTxk0NwE,8637
|
3
3
|
.pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
|
4
4
|
.readthedocs.yaml,sha256=aSOc277LqXcsTI6lgvm_JY80lMlr69GbPKgivua2cS0,603
|
5
|
-
CHANGELOG.md,sha256=
|
5
|
+
CHANGELOG.md,sha256=jYMKaIxITS78BZWfSsSTmO5pwgeMKQrlAv6LLvoxzFk,6871
|
6
6
|
LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
|
7
|
-
PKG-INFO,sha256=
|
7
|
+
PKG-INFO,sha256=mR0DSHPSJ3kTo2xORIaMWAvuxqm_mNIGWsHSKAAN5TY,1308
|
8
8
|
README.md,sha256=Od69x-RS85Hph0-WwWACwal4yUd67XkEn4APEfHhHFw,2649
|
9
|
-
pyproject.toml,sha256=
|
9
|
+
pyproject.toml,sha256=T0PWJVVsbqLBCg4RiK0PqhUMk26vOCU_N7gNYUizbFU,2586
|
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
|
@@ -17,7 +17,7 @@ bec_widgets/applications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
17
17
|
bec_widgets/applications/bec_app.py,sha256=PptBknsnhWm5GSE-xBps4EAYP3f9i-q9YmUMROupnqQ,2801
|
18
18
|
bec_widgets/applications/alignment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
bec_widgets/applications/alignment/alignment_1d/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
-
bec_widgets/applications/alignment/alignment_1d/alignment_1d.py,sha256=
|
20
|
+
bec_widgets/applications/alignment/alignment_1d/alignment_1d.py,sha256=0Jt5MdqIv98OFb6ToKnOGkZnfrbQN3TXc9Aev6fNcmw,7684
|
21
21
|
bec_widgets/applications/alignment/alignment_1d/alignment_1d.ui,sha256=NSBuD5rZuITpsxOPr30fLFjxd_p1oVwT5L4hqEHN3KQ,18012
|
22
22
|
bec_widgets/assets/app_icons/BEC-General-App.png,sha256=hc2ktly53DZAbl_rE3cb-vdRa5gtdCmBEjfwm2y5P4g,447581
|
23
23
|
bec_widgets/assets/app_icons/alignment_1d.png,sha256=5VouaWieb4lVv3wUBNHaO5ovUW2Fk25aTKYQzOWy0mg,2071069
|
@@ -311,8 +311,8 @@ bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button.py,sha256=Z
|
|
311
311
|
bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button.pyproject,sha256=Lbi9zb6HNlIq14k6hlzR-oz6PIFShBuF7QxE6d87d64,34
|
312
312
|
bec_widgets/widgets/utility/visual/dark_mode_button/dark_mode_button_plugin.py,sha256=CzChz2SSETYsR8-36meqWnsXCT-FIy_J_xeU5coWDY8,1350
|
313
313
|
bec_widgets/widgets/utility/visual/dark_mode_button/register_dark_mode_button.py,sha256=rMpZ1CaoucwobgPj1FuKTnt07W82bV1GaSYdoqcdMb8,521
|
314
|
-
bec_widgets-1.5.
|
315
|
-
bec_widgets-1.5.
|
316
|
-
bec_widgets-1.5.
|
317
|
-
bec_widgets-1.5.
|
318
|
-
bec_widgets-1.5.
|
314
|
+
bec_widgets-1.5.3.dist-info/METADATA,sha256=mR0DSHPSJ3kTo2xORIaMWAvuxqm_mNIGWsHSKAAN5TY,1308
|
315
|
+
bec_widgets-1.5.3.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
316
|
+
bec_widgets-1.5.3.dist-info/entry_points.txt,sha256=dItMzmwA1wizJ1Itx15qnfJ0ZzKVYFLVJ1voxT7K7D4,214
|
317
|
+
bec_widgets-1.5.3.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
|
318
|
+
bec_widgets-1.5.3.dist-info/RECORD,,
|
pyproject.toml
CHANGED
File without changes
|
File without changes
|
File without changes
|