-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #210 from arnaucasau/fix-ci
CI was broken for four reasons: pylint was pinned to version 2.16.2 which doesn't support Python 3.12 and 3.11 officially Python 3.12 removed support for the imp library in favor of importlib and we were using a version of ipykernal that was importing the old library. The PR pins ipykernal to the first version supporting importlib. See this issue. The 'QuantumCircuit' object has no method 'bind_parameters' in qiskit 1.0 as we can see in #791 . This PR replaces the call to bind_parameters for assign_parameters as explained in the qiskit 1.0 release notes. The qiskit.execute function is not available in Qiskit 1.0 anymore -> Migration guide
- Loading branch information
Showing
5 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
astroid~=3.0.1 # Must be kept aligned to what pylint wants | ||
ipykernel==6.11.0 |
This file contains 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
This file contains 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
This file contains 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