.github/ISSUE_TEMPLATE/bug_report.md
---
name: "\U0001F41B Bug Report"
about: Submit a bug report to help us improve
labels: bug
title: "[Bug] bug title"
---
### 🐛 Bug
A clear and concise description of what the bug is.
### To Reproduce
Steps to reproduce the behavior.
Please try to provide a minimal example to reproduce the bug. Error messages and stack traces are also helpful.
Please use the [markdown code blocks](https://help.github.com/en/articles/creating-and-highlighting-code-blocks)
for both code and stack traces.
```python
from eagerx import ...
```
```bash
Traceback (most recent call last): File ...
```
### Expected behavior
A clear and concise description of what you expected to happen.
### System Info
Describe the characteristic of your environment:
* Describe how the library was installed (pip, docker, source, ...)
* Versions of all EAGERx packages installed
* Python version
* Gym version
* Versions of all relevant libraries
### Additional context
Add any other context about the problem here.
### Checklist
- [ ] I have checked that there is no similar [issue](https://github.com/eager-dev/eagerx/issues) in the repo (**required**)
- [ ] I have read the [documentation](https://eagerx.readthedocs.io) (**required**)
- [ ] I have provided a minimal working example to reproduce the bug (**required**)
<!--- This Template is an edited version of the one from https://github.com/DLR-RM/stable-baselines3-->