Skip to content

Commit

Permalink
[Feature] Add issue template (#269)
Browse files Browse the repository at this point in the history
Solves #267
  • Loading branch information
chMoussa authored Aug 26, 2024
1 parent bde458d commit 851e051
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 1 deletion.
52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Bug Report
description: Report a bug
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Please fill out the sections below to help everyone identify and fix the bug
- type: textarea
id: description
attributes:
label: Short description
placeholder: Describe here
validations:
required: true
- type: textarea
id: expected
attributes:
label: What is the expected result?
placeholder: Describe here
- type: textarea
id: actual
attributes:
label: What is the actual result?
placeholder: Describe here
- type: textarea
id: code_bug
attributes:
label: Steps/Code to reproduce
placeholder: |
from qadence import *
validations:
required: true
- type: textarea
id: texterror
attributes:
label: Tracebacks (optional)
- type: textarea
id: textenv
attributes:
label: Environment details (optional)
placeholder: Qadence version, Operating system, Python version, PyTorch version
- type: dropdown
id: assign
attributes:
label: "Would you like to work on this issue?"
options:
- "Yes"
- type: markdown
attributes:
value: |
Thanks for reporting this issue! We will get back to you as soon as possible.
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Contribution guidelines
url: https://pasqal-io.github.io/pyqtorch/latest/CONTRIBUTING/
about: How to contribute
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/new-feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: New feature
description: Suggest or request a new feature
labels: ["feature"]
body:
- type: markdown
attributes:
value: |
Please fill out the sections below to properly describe the new feature you are suggesting.
- type: textarea
id: description
attributes:
label: Describe the feature
placeholder: I want ...
validations:
required: true
- type: textarea
id: rationale
attributes:
label: It should be implemented because
placeholder: It will allow ...
- type: textarea
id: context
attributes:
label: Additional context
placeholder: |
Add any other context or screenshots about the feature request here.
- type: dropdown
id: assign
attributes:
label: "Would you like to work on this issue?"
options:
- "Yes"
- type: markdown
attributes:
value: |
Thanks for your suggestion! Let's see together if it can be implemented.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "pyqtorch"
description = "An efficient, large-scale emulator designed for quantum machine learning, seamlessly integrated with a PyTorch backend. Please refer to https://pyqtorch.readthedocs.io/en/latest/ for setup and usage info, along with the full documentation."
readme = "README.md"
version = "1.4.4"
version = "1.4.5"
requires-python = ">=3.8,<3.13"
license = { text = "Apache 2.0" }
keywords = ["quantum"]
Expand Down

0 comments on commit 851e051

Please sign in to comment.