bec-widgets 0.92.1__py3-none-any.whl → 0.92.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.
CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.92.3 (2024-07-28)
4
+
5
+ ### Fix
6
+
7
+ * fix(docs): moved to pyside6 ([`71873dd`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/71873ddf359516ded8f74f4d2f73df4156aa1368))
8
+
9
+ ## v0.92.2 (2024-07-28)
10
+
11
+ ### Fix
12
+
13
+ * fix(widgets): fixed import for tictactoe example ([`995a795`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/995a795060bebe25c17108d80ae0fa30463f03b1))
14
+
3
15
  ## v0.92.1 (2024-07-28)
4
16
 
5
17
  ### Build
@@ -124,10 +136,6 @@ This reverts commit 3798714369adf4023f833b7749d2f46a0ec74eee ([`fd6ae91`](https:
124
136
 
125
137
  * feat(waveform_widget): switch between drag and rectangle mode ([`2be009c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/2be009c6477ba26c5cfb4d827534c5d5eb428999))
126
138
 
127
- * feat(waveform_widget): autorange button ([`8df6b00`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8df6b003e5c6a942fa2e875d9790e492c087bf26))
128
-
129
- * feat(waveform_widget): dap parameter window ([`1e551d6`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1e551d6e9696f79ea2e0a179d13a4fc6c2a128b2))
130
-
131
139
  ### Fix
132
140
 
133
141
  * fix(waveform_widget): plot API unified with BECFigure ([`2c8764a`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/2c8764a27de89b39b717032b58465e120ec57fbc))
@@ -136,10 +144,6 @@ This reverts commit 3798714369adf4023f833b7749d2f46a0ec74eee ([`fd6ae91`](https:
136
144
 
137
145
  * fix(waveform_widget): adapted for BECWidget base class ([`6eb313f`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/6eb313fa76e559d62ecd8fa8849142b83817e47c))
138
146
 
139
- * fix(waveform_widget): temporary disabled save/load config ([`7089cf3`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/7089cf356a43d805241d5621952e544d690e65e0))
140
-
141
- * fix(waveform_widget): use @SafeSlot decorator for automatic error message ([`8e588d7`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8e588d79c86e950f6915e89c08fa9415c4bd8033))
142
-
143
147
  ### Test
144
148
 
145
149
  * test(waveform_widget): test added ([`8d764e2`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8d764e2d46a1e017dadc3c4630648c1ca708afc2))
PKG-INFO CHANGED
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bec_widgets
3
- Version: 0.92.1
3
+ Version: 0.92.3
4
4
  Summary: BEC Widgets
5
5
  Project-URL: Bug Tracker, https://gitlab.psi.ch/bec/bec_widgets/issues
6
6
  Project-URL: Homepage, https://gitlab.psi.ch/bec/bec_widgets
@@ -7,7 +7,8 @@ import sys
7
7
 
8
8
  from bec_ipython_client.main import BECIPythonClient
9
9
  from qtpy.QtWidgets import QApplication
10
- from tictactoe import TicTacToe
10
+
11
+ from bec_widgets.examples.plugin_example_pyside.tictactoe import TicTacToe
11
12
 
12
13
  if __name__ == "__main__": # pragma: no cover
13
14
  app = QApplication(sys.argv)
@@ -2,8 +2,9 @@
2
2
  # SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
3
 
4
4
  from qtpy.QtDesigner import QPyDesignerCustomWidgetCollection
5
- from tictactoe import TicTacToe
6
- from tictactoeplugin import TicTacToePlugin
5
+
6
+ from bec_widgets.examples.plugin_example_pyside.tictactoe import TicTacToe
7
+ from bec_widgets.examples.plugin_example_pyside.tictactoeplugin import TicTacToePlugin
7
8
 
8
9
  # Set PYSIDE_DESIGNER_PLUGINS to point to this directory and load the plugin
9
10
 
@@ -4,10 +4,10 @@ import os
4
4
 
5
5
  from qtpy.QtDesigner import QDesignerCustomWidgetInterface
6
6
  from qtpy.QtGui import QIcon
7
- from tictactoe import TicTacToe
8
- from tictactoetaskmenu import TicTacToeTaskMenuFactory
9
7
 
10
8
  import bec_widgets
9
+ from bec_widgets.examples.plugin_example_pyside.tictactoe import TicTacToe
10
+ from bec_widgets.examples.plugin_example_pyside.tictactoetaskmenu import TicTacToeTaskMenuFactory
11
11
 
12
12
  DOM_XML = """
13
13
  <ui language='c++'>
@@ -4,8 +4,8 @@
4
4
  from qtpy.QtDesigner import QExtensionFactory, QPyDesignerTaskMenuExtension
5
5
  from qtpy.QtGui import QAction
6
6
  from qtpy.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout
7
- from tictactoe import TicTacToe
8
7
 
8
+ from bec_widgets.examples.plugin_example_pyside.tictactoe import TicTacToe
9
9
  from bec_widgets.qt_utils.error_popups import SafeSlot as Slot
10
10
 
11
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bec_widgets
3
- Version: 0.92.1
3
+ Version: 0.92.3
4
4
  Summary: BEC Widgets
5
5
  Project-URL: Bug Tracker, https://gitlab.psi.ch/bec/bec_widgets/issues
6
6
  Project-URL: Homepage, https://gitlab.psi.ch/bec/bec_widgets
@@ -2,11 +2,11 @@
2
2
  .gitlab-ci.yml,sha256=BtKhZI3dhK09En1BfpglYi-ZJwG6ZdC-iJr7kXFVfCg,8346
3
3
  .pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
4
4
  .readthedocs.yaml,sha256=aSOc277LqXcsTI6lgvm_JY80lMlr69GbPKgivua2cS0,603
5
- CHANGELOG.md,sha256=-vNTquNVId-xmL688niPOZe0ChDNb_XkdXxmdcagWQY,7294
5
+ CHANGELOG.md,sha256=vyZOt_7KVKCsdqj2BH_sHPtMO1TjlCiTxsPRANgTHeA,7011
6
6
  LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
7
- PKG-INFO,sha256=KBSOFzJA5iV_W_53ntYovfFeG4uPOv1SDfF-qCArFkY,1308
7
+ PKG-INFO,sha256=fwlAwMRQPcnbIvNhjZS_q-c-28z0jotZHuT4pjPbOXc,1308
8
8
  README.md,sha256=Od69x-RS85Hph0-WwWACwal4yUd67XkEn4APEfHhHFw,2649
9
- pyproject.toml,sha256=qkEuEnhJGRrMzSer_iXKyN8Minb6n-OQp67Do3M2bGE,2357
9
+ pyproject.toml,sha256=5aqUm-W5eSaRGESqLkYAoMamCZDrRfEmwLEWm9ev4ls,2357
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
@@ -95,12 +95,12 @@ bec_widgets/examples/general_app/web_links.py,sha256=d5OgzgI9zb-NAC0pOGanOtJX3nZ
95
95
  bec_widgets/examples/jupyter_console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
96
  bec_widgets/examples/jupyter_console/jupyter_console_window.py,sha256=zzeSE4SS-B6p7LTqS91oGbEmYEtEQHewndVscJywL8I,6766
97
97
  bec_widgets/examples/plugin_example_pyside/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
- bec_widgets/examples/plugin_example_pyside/main.py,sha256=xdC6RWSRt1rW8Prj0CsDeCPct6-_j3__oJmdgogB5PI,505
99
- bec_widgets/examples/plugin_example_pyside/registertictactoe.py,sha256=VNFkHc5Sc30lRKzOFJbhArCHGkp_wRxOeJjZbmaAHRU,448
98
+ bec_widgets/examples/plugin_example_pyside/main.py,sha256=zDP5wO7wb3BVsQ15HOCRT1nNmCujIVRvSXZ3Txje8L0,549
99
+ bec_widgets/examples/plugin_example_pyside/registertictactoe.py,sha256=cVhBnP0qx5j9Jft-VeKvlTFE-bX58hbP45CX0f4r5pM,535
100
100
  bec_widgets/examples/plugin_example_pyside/taskmenuextension.pyproject,sha256=O_PSMFJlXxQuf55gIOfkpfZIZGpX8W1SfUVZ-mvtI_E,119
101
101
  bec_widgets/examples/plugin_example_pyside/tictactoe.py,sha256=byR7mTiIXFaA9igPTH04pzm0yfikNB5KgISwvNiRPd8,4940
102
- bec_widgets/examples/plugin_example_pyside/tictactoeplugin.py,sha256=tTCUKQX5BM4MTC2NSbbit3kf5CRBtJxTx7SqjA564rY,1918
103
- bec_widgets/examples/plugin_example_pyside/tictactoetaskmenu.py,sha256=iU0L6HE3S19XQo-2rASyrJy5SyIJnTAnW_yHP6w4Jz4,2336
102
+ bec_widgets/examples/plugin_example_pyside/tictactoeplugin.py,sha256=Hj-04Y3u_0HvPUrIYv0-tSdCN48S9f5pcfcElSAJVmw,2004
103
+ bec_widgets/examples/plugin_example_pyside/tictactoetaskmenu.py,sha256=V6OVnBTS-60zjQ2FAs88Ldjm1MfoMROfiQZZu6Guav8,2379
104
104
  bec_widgets/qt_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
105
  bec_widgets/qt_utils/error_popups.py,sha256=y9gKKWaafp468ioHr96nBhf02ZpEgjDc-BAVOTWh-e8,7680
106
106
  bec_widgets/qt_utils/settings_dialog.py,sha256=8eGDV3XCYCUXLougnRM_k1JnYQVG23HfmjrbhRzlsRc,3408
@@ -267,7 +267,7 @@ docs/Makefile,sha256=i2WHuFlgfyAPEW4ssEP8NY4cOibDJrVjvzSEU8_Ggwc,634
267
267
  docs/conf.py,sha256=__ETwe00VJvH5_570r-oZpLkTrHYlobMCEcknjYPyjo,2474
268
268
  docs/index.md,sha256=8ZCgaLIbJsYvt-jwi--QxsNwnK4-k3rejIeOOLclG40,1101
269
269
  docs/make.bat,sha256=vKazJE8RW49Cy8K7hm8QYbletvAd8YkeKsaPA_dWnXs,800
270
- docs/requirements.txt,sha256=TcjRnzVYFOg64N-lJc2sn-G6YQdhPjzp0lrLuPsPMXY,156
270
+ docs/requirements.txt,sha256=zPHE-aFokIGSmsRKge-iDwmIR_R_sFXNAuAjU4SEtJM,142
271
271
  docs/_static/custom.css,sha256=v4Nk7r8LZslhOV8RaSUb15bG4miwiZ4-kZyXBLnSyms,13487
272
272
  docs/_templates/custom-class-template.rst,sha256=HPuPaGJob2zXlWOl5FmA-hAZRbUTGQmdqo3HS1iIFog,711
273
273
  docs/_templates/custom-module-template.rst,sha256=MXYXAz06HP_mbblO--iFwL08xROmSBo7U4O-hPbMcZU,1228
@@ -369,8 +369,8 @@ tests/unit_tests/test_configs/config_device_no_entry.yaml,sha256=hdvue9KLc_kfNzG
369
369
  tests/unit_tests/test_configs/config_scan.yaml,sha256=vo484BbWOjA_e-h6bTjSV9k7QaQHrlAvx-z8wtY-P4E,1915
370
370
  tests/unit_tests/test_msgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
371
371
  tests/unit_tests/test_msgs/available_scans_message.py,sha256=m_z97hIrjHXXMa2Ex-UvsPmTxOYXfjxyJaGkIY6StTY,46532
372
- bec_widgets-0.92.1.dist-info/METADATA,sha256=KBSOFzJA5iV_W_53ntYovfFeG4uPOv1SDfF-qCArFkY,1308
373
- bec_widgets-0.92.1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
374
- bec_widgets-0.92.1.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
375
- bec_widgets-0.92.1.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
376
- bec_widgets-0.92.1.dist-info/RECORD,,
372
+ bec_widgets-0.92.3.dist-info/METADATA,sha256=fwlAwMRQPcnbIvNhjZS_q-c-28z0jotZHuT4pjPbOXc,1308
373
+ bec_widgets-0.92.3.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
374
+ bec_widgets-0.92.3.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
375
+ bec_widgets-0.92.3.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
376
+ bec_widgets-0.92.3.dist-info/RECORD,,
docs/requirements.txt CHANGED
@@ -6,7 +6,6 @@ pydata-sphinx-theme
6
6
  sphinx-copybutton
7
7
  myst-parser
8
8
  sphinx-design
9
- PyQt6
10
- PyQt6-WebEngine
9
+ PySide6
11
10
  bec-widgets
12
11
  tomli
pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "bec_widgets"
7
- version = "0.92.1"
7
+ version = "0.92.3"
8
8
  description = "BEC Widgets"
9
9
  requires-python = ">=3.10"
10
10
  classifiers = [