cgse-common 2024.1.5__tar.gz → 2025.0.2__tar.gz
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.
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/PKG-INFO +1 -1
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/pyproject.toml +1 -1
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/version.py +4 -2
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/.gitignore +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/README.md +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/bits.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/calibration.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/command.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/config.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/control.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/decorators.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/device.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/env.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/exceptions.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/hk.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/metrics.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/mixin.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/monitoring.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/observer.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/obsid.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/persistence.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/plugin.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/process.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/protocol.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/proxy.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/reload.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/resource.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/response.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/services.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/services.yaml +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/settings.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/settings.yaml +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/setup.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/state.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/system.py +0 -0
- {cgse_common-2024.1.5 → cgse_common-2025.0.2}/src/egse/zmq_ser.py +0 -0
|
@@ -154,7 +154,10 @@ def get_version_installed(package_name: str) -> str:
|
|
|
154
154
|
return version
|
|
155
155
|
|
|
156
156
|
|
|
157
|
-
|
|
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:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|