-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Summary Now that Aer supports Python 3.12 starting with 0.13.2 (Qiskit/qiskit-aer#2022), we should be able to support it as well. The only code change needed was to update the deprecated usage of `datetime.datetime.utcnow()` to `datetime.datetime.now(datetime.UTC)`. I added a python version checker to handle this since `datetime.UTC` was only introduced in 3.11. --------- Co-authored-by: Will Shanks <[email protected]>
- Loading branch information
1 parent
c536026
commit 0ee4889
Showing
6 changed files
with
6 additions
and
6 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
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,5 +1,5 @@ | ||
qiskit-ibm-provider>=0.6.1 # for submitting experiments to backends through the IBM provider | ||
cvxpy>=1.3.2 # for tomography | ||
scikit-learn # for discriminators | ||
qiskit-aer>=0.11.0 | ||
qiskit-aer>=0.13.2 | ||
qiskit_dynamics>=0.4.0 # for the PulseBackend |
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