Bump pulser to 1.9.0 and pasqal-cloud to 0.23 - #434
Merged
Merged
Conversation
Pulser 1.9 dropped the separate pulser_pasqal package: PasqalCloud and the remote backend classes (RemoteEmulatorBackend, EmuFreeBackendV2) moved into pasqal_cloud, with PasqalCloud renamed to PasqalCloudConnection and EmuFreeBackendV2 renamed to RemoteEmuFreeBackend. Updated all imports/usages accordingly. Also loosens the tolerance in test_max_energy.py since pulser 1.9 changed InterpolatedWaveform's sampling, so the discretized peak no longer matches the analytical max as tightly.
abussy-pasqal
previously approved these changes
Aug 6, 2026
Fenkiou
reviewed
Aug 6, 2026
Co-authored-by: Alexandre Papin <alexandre.papin@indaclouds.fr>
Co-authored-by: Alexandre Papin <alexandre.papin@indaclouds.fr>
Collaborator
Author
|
abussy-pasqal
approved these changes
Aug 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bump pulser to 1.9.0 and pasqal-cloud to 0.23
Changes
pyproject.toml: bumpedpulser[torch]>=1.9.0;pasqal-cloudisn't a direct dependency — it comes transitively via pulser, and pulser 1.9.0 pulls inpasqal-cloud>=0.23on its own.pasqal_cloud >= 0.23: pulser 1.9 dropped the separate
pulser_pasqalpackage —PasqalCloudand the remote backend classes (RemoteEmulatorBackend,EmuFreeBackendV2→ renamedRemoteEmuFreeBackend) moved intopasqal_cloud(withPasqalCloudrenamed toPasqalCloudConnection). Updated imports/usages inqoolqit/execution/backends.py,qoolqit/devices/device.py,tests/test_devices.py,tests/test_execution/test_backends.py, and 3 doc notebooks.Test fix:
InterpolatedWaveformsampling changed slightly in pulser 1.9, sotests/test_compilation/test_max_energy.pyneeded a loosened tolerance (atol=1e-5instead of1e-8) since the discretized peak no longer matches the analytical max as tightly — noted as such in the comment.disable mkdocstrings warnings
I don't see a clear way to ignore specific package warnings when building docs in strict mode
mkdocs build --strict.Failing on
It is a nice check but we cannot have the full pipeline to fail because of a typo in an external package.