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 (4)
# Changelog
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
- Update VideoMode for qcodes 0.49.
......
......@@ -10,4 +10,4 @@ from core_tools.startup.gui import (
start_script_runner,
)
__version__ = "1.5.9"
__version__ = "1.5.10"
......@@ -28,7 +28,6 @@ def get_software_versions() -> dict[str, str]:
}
for name in watched_packages:
try:
print(name)
meta_version = version(name)
version_info = meta_version
if name not in ["qcodes", "numpy"]:
......
from setuptools import setup, find_packages
setup(name="core_tools",
version="1.5.9",
version="1.5.10",
packages = find_packages(),
python_requires=">=3.10",
install_requires=[
......
......@@ -2,7 +2,7 @@
# github_url = "https://github.com/<user or organization>/<project>/"
[version]
current = "1.5.9"
current = "1.5.10"
# Example of a semver regexp.
# Make sure this matches current_version before
......