-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #103 from lbluque/main
Remove python 3.8 tests and update issue templates
- Loading branch information
Showing
6 changed files
with
126 additions
and
64 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,72 @@ | ||
--- | ||
name: "\U0001F41B Bug Report" | ||
about: "If something isn't working as expected \U0001F914." | ||
labels: bug | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug", "triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Email (Optional) | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: ex. [email protected] | ||
validations: | ||
required: false | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our software are you running? | ||
placeholder: v2023.1.1 | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: operating-systems | ||
attributes: | ||
label: Which OS(es) are you using? | ||
description: You may select more than one. | ||
options: | ||
- label: MacOS | ||
- label: Windows | ||
- label: Linux | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Provide a concise description of the bug. | ||
placeholder: | | ||
1. I am attempting to do this (code snippet given below). | ||
2. Expected behavior: ... | ||
3. Instead, got this behavior: ... | ||
4. Proposed solution (if any). Even better, you can just submit a PR with your solution to contribute to the community. | ||
|
||
--- | ||
|
||
<!--- Provide a general summary of the issue in the Title above --> | ||
|
||
<!--- Thanks for tracking down some smelly bug! | ||
Please fill in the following as best you can, if you have no info | ||
for a particular section then just remove the title---> | ||
|
||
## Expected Behavior | ||
<!--- Tell us what should happen --> | ||
|
||
## Current Behavior | ||
<!--- Tell us what happens instead of the expected behavior --> | ||
|
||
## Possible Solution | ||
<!--- Not obligatory, but suggest a fix/reason for the bug, --> | ||
|
||
## Steps to Reproduce | ||
<!--- Provide a link to a live example, or an unambiguous set of steps to --> | ||
<!--- reproduce this bug. Include code to reproduce, if relevant --> | ||
1. | ||
2. | ||
|
||
## Context | ||
<!--- How has this issue affected you? What are you trying to accomplish? --> | ||
<!--- Providing context helps us come up with a solution that is most useful in the real world --> | ||
|
||
<!--- Provide a general summary of the issue in the Title above --> | ||
|
||
## Detailed Description | ||
<!--- Provide a detailed description of the change or addition you are proposing --> | ||
|
||
## Possible Implementation | ||
<!--- Not obligatory, but suggest an idea for implementing addition or change --> | ||
Tip: You can attach images or files by clicking this area and then dragging files in. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: snippet | ||
attributes: | ||
label: Code snippet | ||
description: | | ||
Please provide a code snippet to reproduce the bug. This will be automatically formatted into code, so no need for backticks. | ||
render: python | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Log output | ||
description: | | ||
Please provide any relevant log output, especially error messages. This will be automatically formatted, so no need for backticks. | ||
render: shell | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/materialsproject/.github/blob/main/.github/code_of_conduct.md) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
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,21 +1,49 @@ | ||
--- | ||
name: "\U0001F680 Feature request" | ||
about: Suggest an idea for this project | ||
labels: enhancement | ||
|
||
--- | ||
|
||
<!-- | ||
Thank you for contributing ideas to sparse-lm! | ||
Please fill in as much of the template below as you're able. | ||
--> | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
Please describe the problem you are trying to solve. | ||
|
||
**Describe the solution you'd like** | ||
Please describe the desired behavior. | ||
|
||
**Describe alternatives you've considered** | ||
Please describe alternative solutions or features you have considered. | ||
name: Feature Request | ||
description: Propose a new idea for this project | ||
title: "[Feature Request]: " | ||
labels: ["feature_request", "triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to submit this feature request! | ||
- type: input | ||
id: contact | ||
attributes: | ||
label: Email (Optional) | ||
description: How can we get in touch with you if we need more info? | ||
placeholder: ex. [email protected] | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: Briefly describe the problem you're experiencing. | ||
placeholder: E.g., I would like to be able to do X. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Proposed Solution | ||
description: Detail the feature or solution you'd like to see implemented. | ||
placeholder: E.g., Add a module Y with these functionalities (1)..., (2)... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives | ||
description: List any alternative solutions, prior art or features you have considered, if any. | ||
placeholder: E.g., Similar functionality is found in package <Y>. | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/materialsproject/.github/blob/main/.github/code_of_conduct.md) | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
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
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