widgetastic.patternfly5 25.1.24.0__py3-none-any.whl → 25.2.11.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: widgetastic.patternfly5
3
- Version: 25.1.24.0
3
+ Version: 25.2.11.0
4
4
  Summary: Patternfly5 widget library for Widgetastic.
5
5
  Project-URL: repository, https://github.com/RedHatQE/widgetastic.patternfly5
6
6
  Maintainer-email: Nikhil Dhandre <ndhandre@redhat.com>, Egor Shamardin <eshamard@redhat.com>, Mike Shriver <mshriver@redhat.com>
@@ -24,6 +24,9 @@ Classifier: Programming Language :: Python :: 3
24
24
  Classifier: Programming Language :: Python :: 3.8
25
25
  Classifier: Programming Language :: Python :: 3.9
26
26
  Classifier: Programming Language :: Python :: 3.10
27
+ Classifier: Programming Language :: Python :: 3.11
28
+ Classifier: Programming Language :: Python :: 3.12
29
+ Classifier: Programming Language :: Python :: 3.13
27
30
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
28
31
  Classifier: Topic :: Software Development :: Quality Assurance
29
32
  Classifier: Topic :: Software Development :: Testing
@@ -39,8 +39,8 @@ widgetastic_patternfly5/components/menus/dropdown.py,sha256=5nCz0HRG4VcrzD1NFC9H
39
39
  widgetastic_patternfly5/components/menus/menu.py,sha256=0cUb5V1y3RgRpdAB8DlPIL9OOl7IxBC8A1xjcZgfLBA,7949
40
40
  widgetastic_patternfly5/components/menus/menu_toggle.py,sha256=PBwNvg6E2RPdCG6ALBUqyTZxCwThJgk5S-9ghTiZ9hM,1029
41
41
  widgetastic_patternfly5/components/menus/options_menu.py,sha256=43D0_JHeY-kPORQi54NL9OVmcMyAolVnI4dqHpo5omY,1353
42
- widgetastic_patternfly5/components/menus/select.py,sha256=D4M5XUsiQVye97dClWra1c6rD0M-HM4wVJ2VdVFM0F0,6537
43
- widgetastic.patternfly5-25.1.24.0.dist-info/METADATA,sha256=UghSZ34wny32rW5NAY_n8MdGqPDXCa_hIku9knDTa3k,6925
44
- widgetastic.patternfly5-25.1.24.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
45
- widgetastic.patternfly5-25.1.24.0.dist-info/licenses/LICENSE,sha256=nDhhj8jp0XsTdmvWpTWFpOKVn0LPXPb6ecA9zFF3Exk,576
46
- widgetastic.patternfly5-25.1.24.0.dist-info/RECORD,,
42
+ widgetastic_patternfly5/components/menus/select.py,sha256=7iT6X9RaXrZWNbMaMZ2tJfCJKKJyaNUjTCktpyH8YKQ,6354
43
+ widgetastic.patternfly5-25.2.11.0.dist-info/METADATA,sha256=RdkbNf1RFcCM6EMqlHDAF2haQhMQ7HYMJ8Gnfxlo5m0,7078
44
+ widgetastic.patternfly5-25.2.11.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
45
+ widgetastic.patternfly5-25.2.11.0.dist-info/licenses/LICENSE,sha256=nDhhj8jp0XsTdmvWpTWFpOKVn0LPXPb6ecA9zFF3Exk,576
46
+ widgetastic.patternfly5-25.2.11.0.dist-info/RECORD,,
@@ -57,12 +57,7 @@ class BaseSelect:
57
57
  try:
58
58
  return super().item_select(item)
59
59
  except DropdownItemDisabled:
60
- raise SelectItemDisabled(
61
- 'Item "{}" of {} is disabled\n'
62
- "The following items are available and enabled: {}".format(
63
- item, repr(self), self.enabled_items
64
- )
65
- )
60
+ raise SelectItemDisabled('Item "{}" of {} is disabled')
66
61
 
67
62
  def fill(self, value):
68
63
  """Fills a Select with a value."""