diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b8fb62024..590cfddc6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,13 +14,13 @@ repos: - id: black - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: "v0.16.1" + rev: "v0.16.3" hooks: - id: ruff args: [--fix] - repo: https://github.com/pre-commit/mirrors-mypy - rev: v2.3.0 + rev: v2.3.1 hooks: - id: mypy exclude: examples|docs diff --git a/pyproject.toml b/pyproject.toml index 25f3d2d18..ba028cbce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "qoolqit" description = "A Python library for developing algorithms in the Rydberg Analog Model." readme = "README.md" -version = "1.3.0" +version = "1.4.0" requires-python = ">=3.10" license = { text = "MIT-derived" } keywords = ["quantum"] diff --git a/qoolqit/__init__.py b/qoolqit/__init__.py index a5448f314..372bf5e4a 100644 --- a/qoolqit/__init__.py +++ b/qoolqit/__init__.py @@ -50,7 +50,7 @@ ] -__version__ = "1.3.0" +__version__ = "1.4.0" store_package_version_metadata("qoolqit", __version__) diff --git a/tests/test_program.py b/tests/test_program.py index 0e8583660..d5d1dd697 100644 --- a/tests/test_program.py +++ b/tests/test_program.py @@ -107,7 +107,7 @@ def test_compile_to_max_duration(duration: float) -> None: drive = Drive(amplitude=amp) program = QuantumProgram(reg, drive) program.compile_to( - AnalogDevice(), profile=CompilerProfile.WORKING_POINT, device_max_duration_ratio=1.0 + AnalogDevice(), profile=CompilerProfile.DEFAULT, device_max_duration_ratio=1.0 ) assert program.is_compiled