Skip to content

Commit

Permalink
Merge pull request #237 from pysal/jGaboardi-patch-2
Browse files Browse the repository at this point in the history
Update `bug` template
  • Loading branch information
jGaboardi authored Dec 28, 2018
2 parents 8da85d1 + 6cc76f0 commit 74e5c3f
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,39 @@ If applicable, add screenshots to help explain your problem.

**Additional context**
Add any other context about the problem here.

**System & Versions**
- Platform information:
```python
>>> import os; print(os.name, os.sys.platform);print(os.uname())
```
- Python version:
```python
>>> import sys; print(sys.version)
```
- spaghetti version:
```python
>>> import spaghetti; print(spaghetti.__version__)
```
- libpysal version:
```python
>>> import libpysal; print(libpysal.__version__)
```
- SciPy version:
```python
>>> import scipy; print(scipy.__version__)
```
- NumPy version:
```python
>>> import numpy; print(numpy.__version__)
```
- GeoPandas verion (if applicable):
```python
>>> import geopandas; print(geopandas.__version__)
```

Also, please upload any relevant data as [a file
attachment](https://help.github.com/articles/file-attachments-on-issues-and-pull-requests/). Please **do not** upload pickled objects, since it's nearly impossible to troubleshoot them without replicating your exact namespace. Instead, provide the minimal subset of the data required to replicate the problem. If it makes you more comfortable submitting the issue, feel free to:

1. remove personally identifying information from data or code
2. provide only the required subset of the full data or code

0 comments on commit 74e5c3f

Please sign in to comment.