cgse-common 2024.1.5__py3-none-any.whl → 2025.0.2__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: 2024.1.5
3
+ Version: 2025.0.2
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>
@@ -28,9 +28,9 @@ egse/settings.yaml,sha256=M6WMtTbNqNuXsdEf-OzKz0dAxkFTRabpugmIJ2HKyZk,290
28
28
  egse/setup.py,sha256=NLS0RhMTvKpdHnnojSPCcfRJwPGkpijt5VLFcDfnbt8,42916
29
29
  egse/state.py,sha256=ekcCZu_DZKkKYn-5iWG7ij7Aif2WYMNVs5h3cia-cVc,5352
30
30
  egse/system.py,sha256=t2NrtTAPXbMgBxsqicGjti-b8oEmiHtQu2Ydm77q4lI,48941
31
- egse/version.py,sha256=EigdH05E8pNtSQznUfqM_RxlOjuAVp3Oe6S6MM5xGIM,6132
31
+ egse/version.py,sha256=-EMuiSn2eEp8QJX6csmBEu1m2yGqlXHJj2Hj49w6a2k,6217
32
32
  egse/zmq_ser.py,sha256=2-nwVUBWZ3vvosKNmlWobHJrIJA2HlM3V5a63Gz2JY0,1819
33
- cgse_common-2024.1.5.dist-info/METADATA,sha256=SJEF1KdZFEZz_Rg7Dj_WdMQknWLArJaBMKrKA6FBlcA,2574
34
- cgse_common-2024.1.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
35
- cgse_common-2024.1.5.dist-info/entry_points.txt,sha256=E-KaQ9NGWAP1XvLHncNxq5oa22EAf9sOpBZWphXcxiE,34
36
- cgse_common-2024.1.5.dist-info/RECORD,,
33
+ cgse_common-2025.0.2.dist-info/METADATA,sha256=ycQczzeg4O-eEFaNSY_1ARdxyluN4OosdNTuSawSb0s,2574
34
+ cgse_common-2025.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
35
+ cgse_common-2025.0.2.dist-info/entry_points.txt,sha256=E-KaQ9NGWAP1XvLHncNxq5oa22EAf9sOpBZWphXcxiE,34
36
+ cgse_common-2025.0.2.dist-info/RECORD,,
egse/version.py CHANGED
@@ -154,7 +154,10 @@ def get_version_installed(package_name: str) -> str:
154
154
  return version
155
155
 
156
156
 
157
- VERSION = get_version_from_settings_file_raw("Common-EGSE", location=HERE)
157
+ # The version will be the installed version of the `egse.common`, because this is the package that is guaranteed
158
+ # to be installed, and not necessarily `cgse`.
159
+
160
+ VERSION = get_version_installed('cgse-common')
158
161
 
159
162
  # The __PYPI_VERSION__ is the version number that will be used for the installation.
160
163
  # The version will appear in PyPI and also as the `installed version`.
@@ -164,7 +167,6 @@ __PYPI_VERSION__ = VERSION.split('+')[0]
164
167
 
165
168
  if __name__ == "__main__":
166
169
  import rich
167
- from egse.system import get_module_location
168
170
  from egse.plugin import entry_points
169
171
 
170
172
  if VERSION: