summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE.md
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2018-07-05 11:59:20 -0700
committermattip <matti.picus@gmail.com>2018-07-05 11:59:20 -0700
commitd7c992445eb69867b3bd3180810a6106a6cbf748 (patch)
tree345a0f47321359166880c71b47b96511c57bb6a0 /.github/ISSUE_TEMPLATE.md
parent739443679b50b43c34808b8fb767bac643fcd91d (diff)
downloadnumpy-d7c992445eb69867b3bd3180810a6106a6cbf748.tar.gz
DOC: add templates for issues and PR
Diffstat (limited to '.github/ISSUE_TEMPLATE.md')
-rw-r--r--.github/ISSUE_TEMPLATE.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 000000000..fd18c3e08
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,23 @@
+
+<<Please describe the issue in detail here, and for bug reports fill in the fields below.>>
+
+### Reproducing code example:
+```
+<<A short code example that reproduces the problem. It should be self-contained, i.e., possible to run as-is via 'python myproblem.py'>>
+```
+
+### Error message:
+If you are reporting a segfault please include a GDB traceback, which you can
+generate by following
+[these instructions.](https://github.com/numpy/numpy/blob/master/doc/source/dev/development_environment.rst#debugging)
+
+```
+<<Full error message, if any (starting from line Traceback: ...)>>
+```
+
+### Numpy/Python version information:
+```
+<<Output from 'import sys, numpy; print(numpy.__version__, sys.version)'>>
+```
+
+