-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Pin Aer to known good version The release of Aer 0.12.1 included a bug in the results output that made the general `Result` object unpickleable. Several places in our tests assume that these objects should be able to be pickled to be sent across a process boundary, or such like. * Make GitHub Actions respect constraints (cherry picked from commit 676d90c) Co-authored-by: Jake Lishman <jake.lishman@ibm.com>
- Loading branch information
1 parent
c3617e8
commit 2c3166c
Showing
2 changed files
with
7 additions
and
3 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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# jsonschema pinning needed due nbformat==5.1.3 using deprecated behaviour in | ||
# 4.0+. The pin can be removed after nbformat is updated. | ||
jsonschema==3.2.0 | ||
|
||
# Aer 0.12.1 has a bad value in the results output that prevents pickling. | ||
# Remove pin once https://github.com/Qiskit/qiskit-aer/pull/1845 is released. | ||
qiskit-aer==0.12.0 |