Skip to content

Commit

Permalink
Mention common cases in issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonwillard committed Oct 17, 2022
1 parent c7ff283 commit 32cb9e9
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
## Description of your problem or feature request

**Please provide a minimal, self-contained, and reproducible example.**
First, carefully read the following to determine whether or not you have a valid Aesara issue:

- Does your issue only arise in a library that uses Aesara (e.g. PyMC)? If so, submit your issue to that library's issue tracker. From there, the Aesara-specific details can be worked out and a valid Aesara issue can be identified.
- Does your issue involve OS and/or environment-specific settings (e.g. installation and/or compilation issues)? If so, create a [Discussion](https://github.com/aesara-devs/aesara/discussions) instead. From there, we can help determine whether or not the issue is due to faulty logic in Aesara (i.e. a valid issue) or something specific to your local setup.


If the above does not apply, and you have an issue or feature request that's specific to Aesara, provide a minimal, self-contained, and reproducible example (i.e. an [MWE](https://en.wikipedia.org/wiki/Minimal_reproducible_example)):

```python
[Your code here]
```

**Please provide the full traceback of any errors.**
**Please provide the full tracebacks for any relevant errors and/or warning messages.**


```python
[The error output here]
```
Expand All @@ -16,7 +25,12 @@
## Versions and main components

* Aesara version:
* Aesara config (`python -c "import aesara; print(aesara.config)"`)
* Python version:
* Operating system:
* How did you install Aesara: (conda/pip)

<details> <summary> Aesara config: </summary>

Place the results of `python -c "import aesara; print(aesara.config)"` here.

</details>

0 comments on commit 32cb9e9

Please sign in to comment.