Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe github changed the format required to specify an issue template it now uses yaml files.

Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
* **I'm submitting a ...**
- [ ] bug report
- [ ] feature request


* **What is the current behavior?**



* **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem**



* **What is the expected behavior?**



* **What is the motivation / use case for changing the behavior?**



* **Please tell us about your environment:**

- Version:
- Platform:
- Subsystem:


* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
* **Please check if the PR fulfills these requirements**
- [ ] The commit message follows our guidelines
- [ ] Tests for the changes have been added (for bug fixes / features)
- [ ] Docs have been added / updated (for bug fixes / features)


* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...)



* **What is the current behavior?** (You can also link to an open issue here)



* **What is the new behavior (if this is a feature change)?**



* **Does this PR introduce a breaking change?** (What changes might users need to make in their application due to this PR?)



* **Other information**:
241 changes: 241 additions & 0 deletions examples/quantum_scars.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ nav:
- Sigmoid time-dependence: examples/adiabatic_sigmoid.ipynb
- Ising model: examples/ising_model.ipynb
- QAOA: examples/qaoa.ipynb
- Quantum scars: examples/quantum_scars.ipynb

- Core: "!include ./oqd-core/mkdocs.yaml"
- Emulators:
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ classifiers = [
dependencies = [
"matplotlib",
"seaborn",
"oqd-compiler-infrastructure",
"oqd-core",
"oqd-analog-emulator",
"oqd-cloud",
"oqd-compiler-infrastructure@git+https://github.com/openquantumdesign/oqd-compiler-infrastructure",
"oqd-core @ git+https://github.com/openquantumdesign/oqd-core",
"oqd-analog-emulator @ git+https://github.com/openquantumdesign/oqd-analog-emulator",
"oqd-cloud @ git+https://github.com/openquantumdesign/oqd-cloud",
]

[project.optional-dependencies]
Expand Down