bec-widgets 0.112.0__py3-none-any.whl → 0.112.1__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.112.1 (2024-09-19)
4
+
5
+ ### Documentation
6
+
7
+ * docs(dap_combo_box): updated screenshot ([`e3b5e33`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/e3b5e338bfaec276979183fb6d79ab41a7ca21e1))
8
+
9
+ * docs(device_box): updated screenshot ([`c8e614b`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/c8e614b575b48be788a6389a7aa0cfa033d86ab8))
10
+
11
+ ### Fix
12
+
13
+ * fix: test e2e dap wait_for_fit ([`b2f7d3c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/b2f7d3c5f3f4bf00cc628f788e2c278ebb5688ae))
14
+
3
15
  ## v0.112.0 (2024-09-17)
4
16
 
5
17
  ### Feature
@@ -136,24 +148,12 @@
136
148
 
137
149
  ## v0.103.0 (2024-09-04)
138
150
 
139
- ### Ci
140
-
141
- * ci: prefill variables for manual pipeline start ([`158c19e`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/158c19eda771562a325fd59405f9fd4cb9a17ed6))
142
-
143
151
  ### Feature
144
152
 
145
153
  * feat(vscode): open vscode on a free port ([`52da835`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/52da835803f2453096a8b7df23bee5fdf93ae2bb))
146
154
 
147
155
  * feat(website): added method to wait until the webpage is loaded ([`9be19d4`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/9be19d4abebad08c5fc6bea936dd97475fe8f628))
148
156
 
149
- ### Fix
150
-
151
- * fix(theme): fixed segfault for webengineview for auto updates ([`9866075`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/9866075100577948755b563dc7b7dc4cdc60d040))
152
-
153
157
  ### Test
154
158
 
155
159
  * test(webview): fixed tests after refactoring ([`d5eb30c`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/d5eb30cd7df4cb0dc3275dd362768afc211eaf2d))
156
-
157
- * test(vscode): popen call does not have to be the only one ([`39f98ec`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/39f98ec223ba8b59e478ac788c08c59ffe886b4e))
158
-
159
- ## v0.102.0 (2024-09-04)
PKG-INFO CHANGED
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bec_widgets
3
- Version: 0.112.0
3
+ Version: 0.112.1
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
@@ -165,21 +165,18 @@ class DapComboBox(BECWidget, QWidget):
165
165
  return True
166
166
 
167
167
 
168
- # pragma: no cover
169
- def main():
170
- """Main function to run the DapComboBox widget."""
171
- import sys
172
-
168
+ if __name__ == "__main__": # pragma: no cover
169
+ # pylint: disable=import-outside-toplevel
173
170
  from qtpy.QtWidgets import QApplication
174
171
 
175
172
  from bec_widgets.utils.colors import set_theme
176
173
 
177
- app = QApplication(sys.argv)
178
- set_theme("auto")
179
- widget = DapComboBox()
174
+ app = QApplication([])
175
+ set_theme("dark")
176
+ widget = QWidget()
177
+ widget.setFixedSize(200, 200)
178
+ layout = QVBoxLayout()
179
+ widget.setLayout(layout)
180
+ layout.addWidget(DapComboBox())
180
181
  widget.show()
181
- sys.exit(app.exec_())
182
-
183
-
184
- if __name__ == "__main__":
185
- main()
182
+ app.exec_()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bec_widgets
3
- Version: 0.112.0
3
+ Version: 0.112.1
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=Dc1iDjsc72UxdUtihx4uSZU0lrTQeR8hZwGx1MQBfKE,8432
3
3
  .pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
4
4
  .readthedocs.yaml,sha256=aSOc277LqXcsTI6lgvm_JY80lMlr69GbPKgivua2cS0,603
5
- CHANGELOG.md,sha256=eBCIo9UocDEQFnCYzk2QiUopr_UUYPYld3sIFdFkiZY,7150
5
+ CHANGELOG.md,sha256=3M7s7ap21i0Oj1-CBtDDH99F7eLvKES-kGBuQGQ0tYg,7101
6
6
  LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
7
- PKG-INFO,sha256=ybdBdJUN55C1pniCas8sTK3pfBdB_onvbV2DqZaYs2E,1334
7
+ PKG-INFO,sha256=eJX9oS4B2jWQNIZANS22tQlI3451ewK8zEa5RAOTx10,1334
8
8
  README.md,sha256=Od69x-RS85Hph0-WwWACwal4yUd67XkEn4APEfHhHFw,2649
9
- pyproject.toml,sha256=wYZG1Ce2ViBWk97i9KVIy0E0b_nyfOx5yUc5cu3q35Q,2544
9
+ pyproject.toml,sha256=pbX6O69RvBmtoeG5EpO0chfdrSHX2_kXUdBruUiRvfY,2544
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
@@ -120,7 +120,7 @@ bec_widgets/widgets/console/console.pyproject,sha256=JcoDuZG03g1Bxkd3Aipo7jjLexu
120
120
  bec_widgets/widgets/console/console_plugin.py,sha256=Jc1m24cjwyZI6cZB5twDTq9zjleeAMTaCDEJo5l5Q88,1349
121
121
  bec_widgets/widgets/console/register_console.py,sha256=T05uIV0UsBaNsG8DzLpYMmdcA4_RW1RgGaXjG51lyAs,463
122
122
  bec_widgets/widgets/dap_combo_box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- bec_widgets/widgets/dap_combo_box/dap_combo_box.py,sha256=MmDsEFxSYJBG4R9ql_UF0K0OtnZCQMDTvKWxzPmFleA,5596
123
+ bec_widgets/widgets/dap_combo_box/dap_combo_box.py,sha256=_wUCHjUdiWC1sYcacLrcrnnznbpv1yBuXB0qGPC_QpU,5653
124
124
  bec_widgets/widgets/dap_combo_box/dap_combo_box.pyproject,sha256=3TzD8j0F6UYw8TPwKxVDeXdobnYIRXNrAUrXzqWjk4M,31
125
125
  bec_widgets/widgets/dap_combo_box/dap_combo_box_plugin.py,sha256=WVR8k10SESRFm-hQUrcUfgycuNu7HIcZqV--24nw-TU,1270
126
126
  bec_widgets/widgets/dap_combo_box/register_dap_combo_box.py,sha256=RGFzFmldBwQjpKB7wbIxJU20uprjXtqCVnUkt0Zc7aA,477
@@ -259,8 +259,8 @@ bec_widgets/widgets/website/register_website_widget.py,sha256=LIQJpV9uqcBiPR9cEA
259
259
  bec_widgets/widgets/website/website.py,sha256=42pncCc_zI2eqeMArIurVmPUukRo5bTxa2h1Skah-io,3012
260
260
  bec_widgets/widgets/website/website_widget.pyproject,sha256=scOiV3cV1_BjbzpPzy2N8rIJL5P2qIZz8ObTJ-Uvdtg,25
261
261
  bec_widgets/widgets/website/website_widget_plugin.py,sha256=pz38_C2cZ0yvPPS02wdIPcmhFo_yiwUhflsASocAPQQ,1341
262
- bec_widgets-0.112.0.dist-info/METADATA,sha256=ybdBdJUN55C1pniCas8sTK3pfBdB_onvbV2DqZaYs2E,1334
263
- bec_widgets-0.112.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
264
- bec_widgets-0.112.0.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
265
- bec_widgets-0.112.0.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
266
- bec_widgets-0.112.0.dist-info/RECORD,,
262
+ bec_widgets-0.112.1.dist-info/METADATA,sha256=eJX9oS4B2jWQNIZANS22tQlI3451ewK8zEa5RAOTx10,1334
263
+ bec_widgets-0.112.1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
264
+ bec_widgets-0.112.1.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
265
+ bec_widgets-0.112.1.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
266
+ bec_widgets-0.112.1.dist-info/RECORD,,
pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "bec_widgets"
7
- version = "0.112.0"
7
+ version = "0.112.1"
8
8
  description = "BEC Widgets"
9
9
  requires-python = ">=3.10"
10
10
  classifiers = [