cgse-common 2025.0.7__py3-none-any.whl → 2025.0.8.dev2__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: cgse-common
3
- Version: 2025.0.7
3
+ Version: 2025.0.8.dev2
4
4
  Summary: Software framework to support hardware testing
5
5
  Author: IVS KU Leuven
6
6
  Maintainer-email: Rik Huygen <rik.huygen@kuleuven.be>, Sara Regibo <sara.regibo@kuleuven.be>
@@ -23,16 +23,16 @@ egse/proxy.py,sha256=pMKdnF62SXm0quLoKfgvK9GFkH2mLMB5fWNrZenfqQQ,18100
23
23
  egse/reload.py,sha256=rDT0bC6RFeRhW38wSgFcxr30h8FvaKkoGp_OE-AwBB4,4388
24
24
  egse/resource.py,sha256=VoB7BVrQULT_SJ1XioDzB59-uH47nUcN-KNVLvFxiFE,15163
25
25
  egse/response.py,sha256=WFtWftovrmmn92NW4mhJjibMtCWteZmAzNuPLVsV-lg,2716
26
- egse/services.py,sha256=rGS_5mSUFDw8wISEU_nuS9P9_XNtHvpViD9oSH9FqKo,7709
26
+ egse/services.py,sha256=FV6BUEotkooGALq1EzypZjHg0BDRJixSghp3ak7o_z8,7712
27
27
  egse/services.yaml,sha256=p8QBF56zLI21iJ9skt65VlNz4rIqRoFfBTZxOIUZCZ4,1853
28
28
  egse/settings.py,sha256=lmIfg3lwIuHrI8JL5qfiAaXHjblC87_W0c2mjbj-vRA,15562
29
29
  egse/settings.yaml,sha256=mz9O2QqmiptezsMvxJRLhnC1ROwIHENX0nbnhMaXUpE,190
30
- egse/setup.py,sha256=xUbESIwXhFS86xTxltrTnKALWUs-wZrkmpxvfS7oqx0,44031
30
+ egse/setup.py,sha256=YaJaCMfU1OO92Rg3Yt85Ug5M0y713fmXSvJzJ4l-t1M,44117
31
31
  egse/state.py,sha256=ekcCZu_DZKkKYn-5iWG7ij7Aif2WYMNVs5h3cia-cVc,5352
32
32
  egse/system.py,sha256=KCXz8eH3PNwLaB7ww3OCkK_tQoaTYhh2FEwX1mvN8RQ,48996
33
33
  egse/version.py,sha256=-EMuiSn2eEp8QJX6csmBEu1m2yGqlXHJj2Hj49w6a2k,6217
34
34
  egse/zmq_ser.py,sha256=2-nwVUBWZ3vvosKNmlWobHJrIJA2HlM3V5a63Gz2JY0,1819
35
- cgse_common-2025.0.7.dist-info/METADATA,sha256=JBawsbH6qJsHziZvcp34fA6bI2wMy9kxLDBmneeVXTk,2574
36
- cgse_common-2025.0.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
37
- cgse_common-2025.0.7.dist-info/entry_points.txt,sha256=MtsCYBzfuc3afzsjbdGJ-TZRSS8rhof5fI9w86_nGkQ,91
38
- cgse_common-2025.0.7.dist-info/RECORD,,
35
+ cgse_common-2025.0.8.dev2.dist-info/METADATA,sha256=akV1XI0T33AvHHeiDEO1ZX4vqYNPkbBoOojenbqPsnY,2579
36
+ cgse_common-2025.0.8.dev2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
37
+ cgse_common-2025.0.8.dev2.dist-info/entry_points.txt,sha256=MtsCYBzfuc3afzsjbdGJ-TZRSS8rhof5fI9w86_nGkQ,91
38
+ cgse_common-2025.0.8.dev2.dist-info/RECORD,,
egse/services.py CHANGED
@@ -25,7 +25,7 @@ LOGGER = logging.getLogger(__name__)
25
25
 
26
26
  HERE = Path(__file__).parent
27
27
 
28
- SERVICE_SETTINGS = Settings.load(filename=str(HERE / "services.yaml"))
28
+ SERVICE_SETTINGS = Settings.load(location=HERE, filename="services.yaml")
29
29
 
30
30
 
31
31
  class ServiceCommand(ClientServerCommand):
egse/setup.py CHANGED
@@ -266,7 +266,8 @@ def _get_attribute(self, name, default):
266
266
  def _parse_filename_for_setup_id(filename: str):
267
267
  """Returns the setup_id from the filename, or None when no match was found."""
268
268
 
269
- match = re.search(r"SETUP_([^_]+)_(\d+)", filename)
269
+ # match = re.search(r"SETUP_([^_]+)_(\d+)", filename)
270
+ match = re.search(r"SETUP_(\w+)_([\d]{5})_([\d]{6})_([\d]{6})\.yaml", filename)
270
271
 
271
272
  # TypeError when match is None
272
273