-
Notifications
You must be signed in to change notification settings - Fork 53
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
[Submission]: Quantum Glasses #478
Comments
The tag for this project could be "visualization" or "widget". |
Submission PR #479 has been created with errors in tests |
Tests with latest version of Qiskit release failed! |
Tests with development version of Qiskit release failed! |
The problem seems to be your requirements, you don't need most of them. From your program file, you only need :
Your test is not a test class, here an example of a simple test : https://github.com/mickahell/qiskit-ecosystem_template/blob/main/tests/test_random.py |
Most of the other packages are dependencies of qiskit. |
Pip know how to deal with dependencies, just add the strict minimum. |
contourpy==1.1.0 # matplotlib dependency, not required for project I have tried to remove everything unnecessary. The three modules "exceptiongroup", "iniconfig" and "pluggy" are only required for pytest. The other two modules "contourpy" and "fonttools" are not required for the project but are dependencies of the matplotlib. All the other modules that seem insignificant are required for a successful run. I have manually checked it. |
You can do even better ;) What you don't need :
More generally, if you don't need to import it in your program you don't need to install it. During the pip setup of those packages, pip will handle by himself the dependencies they need and their version. You can trust him :) (else your program could not be able to works correctly on different OS and python env). If you want to check what I'm saying you can setup automatic testing with github Actions and using tox (look at this repo : qiskit-ecosystem_template ) |
All those packages rustworkx, cycler etc are required for the |
Submission PR #479 has been created with errors in tests |
Tests with latest version of Qiskit release failed! |
Tests with development version of Qiskit release failed! |
So, I need to add |
@Jayshah25 I created you a PR with everything you need Jayshah25/Quantum-Glasses#1 |
Thank you for the PR. I have merged it with the main branch. |
Standard tests✨ Successfull submission! Stable tests✨ Tests with latest version of Qiskit release passed! Development tests✨ Tests with development version of Qiskit release passed! Logs: https://github.com/qiskit-community/ecosystem/actions/runs/5911224903 |
Add Quantum-Glasses to list. --- Closes #478 Co-authored-by: mickahell <[email protected]>
Hello @Jayshah25! You joined the Qiskit Ecosystem a little while ago and I just wanted to check in and let you know of some follow up actions you can take to make the most of joining the program, if you're interested: 💬 Join other Qiskit ecosystem developers in the Slack channel #qiskit-ecosystem (if you are not in the Qiskit workspace yet, you can sign up here: https://qisk.it/join-slack) 🧠 Help us define the future of the Qiskit Ecosystem: we recently started an RFC on how the Ecosystem should be structured. It is very draft-y at the moment, but you can subscribe for notifications here Qiskit/RFCs#46 to participate in that discussion. 📣 Would you like to showcase your project to the Qiskit community? A couple of things you can do to raise awareness for your project:
Great having you as a part of the ecosystem! |
Github repo
https://github.com/Jayshah25/Quantum-Glasses
Description
Visualise the effects of Single Qubit Gates on a Qubit via Bloch Sphere Simulation in a Tkinter Software.
Email
[email protected]
Alternatives
The only alternative is to code up a circuit (qiskit.QuantumCircuit) and pass the circuit to visualize_transition from qiskit.visualization. Quantum Glasses implementation wraps all of this into a simple, easy to use Tkinter Software.
License
Apache License 2.0
Affiliations
No response
Tags
visualization
Website
No response
The text was updated successfully, but these errors were encountered: