-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve Compatibility documentation (#256)
* Changing Installation section of README.md * Move Compatibility section at the top of the Getting Started page * Improve Install section * Improve Compatibility section * Add compatibility check-box to the issue template * Update docs/source/getting_started/index.rst Co-authored-by: Camille Bellot <80476446+cbellot000@users.noreply.github.com> * Remove mention of Dockers for now Co-authored-by: Camille Bellot <80476446+cbellot000@users.noreply.github.com>
- Loading branch information
1 parent
8dafee0
commit 18bc234
Showing
4 changed files
with
138 additions
and
45 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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: 🐞 Bug, problem, error | ||
description: Fill a bug report here | ||
title: "Bug located in ..." | ||
labels: ["bug"] | ||
assignees: [""] | ||
|
||
body: | ||
|
||
- type: markdown | ||
attributes: | ||
value: '# 🐞 **Problem**' | ||
|
||
- type: checkboxes | ||
id: new-bug | ||
attributes: | ||
label: Before submitting the issue | ||
description: Please, make sure the following conditions are met | ||
options: | ||
- label: I have checked for [Compatibility](https://dpfdocs.pyansys.com/getting_started/index.html#compatibility) issues | ||
required: true | ||
- label: I have searched among the existing issues | ||
required: true | ||
- label: I am using a Python virtual environment | ||
required: true | ||
|
||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Description of the bug | ||
placeholder: Describe what bug you encountered and what should have happened | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: Steps To Reproduce | ||
placeholder: Please write the steps in a list form | ||
validations: | ||
required: true | ||
|
||
- type: markdown | ||
attributes: | ||
value: '# 🖥️ **System Information**' | ||
|
||
- type: dropdown | ||
id: os-name | ||
attributes: | ||
label: Which Operating System are you using? | ||
multiple: false | ||
options: | ||
- 'Windows' | ||
- 'MacOS' | ||
- 'Linux' | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: python-version | ||
attributes: | ||
label: Which Python version are you using? | ||
description: Run `python --version` to verify your Python version | ||
multiple: false | ||
options: | ||
- '3.7' | ||
- '3.8' | ||
- '3.9' | ||
- '3.10' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: installed-packages | ||
attributes: | ||
label: Installed packages | ||
description: Run `python -m pip freeze` to list installed packages | ||
placeholder: Paste the output of `python -m pip freeze` here | ||
validations: | ||
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