Skip to content

Commit

Permalink
MNT: update bug report template
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Apr 24, 2024
1 parent bceae4f commit ce8e889
Showing 1 changed file with 4 additions and 23 deletions.
27 changes: 4 additions & 23 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,26 +39,7 @@ body:
```
- type: textarea
attributes:
label: Versions
description: Version of relevant packages.
value: |
```python
import platform; print(platform.platform())
import sys; print("Python", sys.version)
import astropy; print("astropy", astropy.__version__)
import numpy; print("Numpy", numpy.__version__)
import erfa; print("pyerfa", erfa.__version__)
try:
import scipy
print("Scipy", scipy.__version__)
except ImportError:
print("Scipy not installed")
try:
import matplotlib
print("Matplotlib", matplotlib.__version__)
except ImportError:
print("Matplotlib not installed")
```
```
# Copy the result here
```
label: Environment info
description: Please run the following and paste the output here
`curl --silent https://raw.githubusercontent.com/astropy/astropy/main/astropy/utils/report_info.py | python`
render: shell

0 comments on commit ce8e889

Please sign in to comment.