-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace qiskit-terra references with qiskit references #1318
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3eddcdd
Replace qiskit-terra dependency with qiskit dependency
wshanks 4cd7b50
Replace package/repo references to qiskit-terra with qiskit
wshanks 7a877ff
Remove workarounds for aquire_alignment misspelling
wshanks d77779a
Simplify logging of qiskit version
wshanks 12cc337
Remove stray references to terra
wshanks e0a17a2
Remove unused imports
wshanks 35a8da8
Replace terra usage in tox.ini and GitHub workflows
wshanks f94166a
Typo
wshanks bc4dd22
Log both qiskit and qiskit-experiments versions
wshanks e42b0be
Report the minimum required qiskit version in the release note
wshanks 6460bb6
Limit qiskit version to <1.0
wshanks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Numpy 1.25 deprecated some behaviours that we used, and caused some | ||
# tests to flake. See https://github.com/Qiskit/qiskit-terra/issues/10305, | ||
# tests to flake. See https://github.com/Qiskit/qiskit/issues/10305, | ||
# remove pin when resolving that. | ||
numpy<1.25 | ||
numpy<1.25 |
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
15 changes: 15 additions & 0 deletions
15
releasenotes/notes/qiskit-dependency-3f6b8d71cc4d2c31.yaml
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,15 @@ | ||
--- | ||
upgrade: | ||
- | | ||
The dependency on ``qiskit-terra`` was replaced with a dependency on | ||
``qiskit``. This change follows the move in upstream Qiskit to rename | ||
``qiskit-terra`` to ``qiskit``. The minimum required version was increased | ||
from 0.24 for ``qiskit-terra`` to 0.44 for ``qiskit`` (equivalent to | ||
`qiskit-terra`` 0.25). The maximum ``qiskit`` version was set to ``<1.0`` | ||
in anticipation of breaking changes in Qiskit 1.0. Closer to the Qiskit 1.0 | ||
release, a patch release of ``qiskit-experiments`` will remove this | ||
constraint and address any compatibility issues. For more information see | ||
the `Qiskit repository renaming plan | ||
<https://github.com/Qiskit/RFCs/blob/5793e78dc8e4d8d17f8ef7fad789c6c5ebd3a061/0011-repo-rename.md>`__ | ||
and the `Qiskit issue <https://github.com/Qiskit/qiskit/issues/11240>`__ | ||
for the renaming of the package. |
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,4 +1,4 @@ | ||
qiskit-terra>=0.45.0 | ||
qiskit>=0.45.0 | ||
black~=22.0 | ||
fixtures | ||
stestr | ||
|
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should the old and new version numbers be explicitly mentioned here too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done but we need to keep this release note in mind if we merge #1288 and increase the minimum qiskit version.