Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • qutech-qdlabs/core_tools
1 result
Show changes
Commits on Source (2)
# Changelog # Changelog
All notable changes to core_tools will be documented in this file. All notable changes to core_tools will be documented in this file.
## \[1.5.10] - 2025-02-17
- Removed unintended print statement.
## \[1.5.9] - 2025-02-13 ## \[1.5.9] - 2025-02-13
- Update VideoMode for qcodes 0.49. - Update VideoMode for qcodes 0.49.
......
...@@ -28,7 +28,6 @@ def get_software_versions() -> dict[str, str]: ...@@ -28,7 +28,6 @@ def get_software_versions() -> dict[str, str]:
} }
for name in watched_packages: for name in watched_packages:
try: try:
print(name)
meta_version = version(name) meta_version = version(name)
version_info = meta_version version_info = meta_version
if name not in ["qcodes", "numpy"]: if name not in ["qcodes", "numpy"]:
......