-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Remove ProjectQ from qiskit-core #553
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
Conversation
with patch.object(path, 'exists', return_value=True, autospec=True),\ | ||
patch.object(path, 'getsize', return_value=1000, autospec=True),\ | ||
patch.object(qasm_simulator_projectq, 'CppSim', {}): |
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.
@delapuente can you please double check this to see if the intent of your tests are preserved if we remove ProjectQ simulator here?
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.
LGTM!
b37a5f4
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.
Thanks @yaelbh , nice surgical work once again! I just removed a TODO
that was made obsolete by the changes, and also solved the conflicts (taking the chance as well to sort some issues with the CHANGELOG
that we did not include in the latest release) - it's looking good!
* Removed ProjectQ from qiskit-core. Will be available in a new repository qiskit-addon-projectq. * Updated CHANGELOG with the ProjectQ removal * Remove outdated TODO
Summary
Since the ProjectQ simulator will be moved to a new repository qsikit-addon-projectq, this pull request removes it from qiskit-core.
Details and comments