Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention common cases in issue template #1266

Merged
merged 1 commit into from
Oct 17, 2022
Merged
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
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. **Issues framed primarily in third-party libraries are liable to being marked as invalid and closed.**
- 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>