summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMelissaWM <melissawm@gmail.com>2020-09-08 19:41:52 -0300
committerMelissaWM <melissawm@gmail.com>2020-09-08 19:41:52 -0300
commit66de9eb30017c2950cecf046c0626fa983e347b6 (patch)
treedc4b22cbf977c256c46efd00d5de38f4e9002909 /.github
parent199448294c937e82127cb648fd4dd380a46d8d58 (diff)
downloadnumpy-66de9eb30017c2950cecf046c0626fa983e347b6.tar.gz
Added post-install issue template and responses to PR comments.
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE.md27
-rw-r--r--.github/ISSUE_TEMPLATE/bug-report.md2
-rw-r--r--.github/ISSUE_TEMPLATE/feature-request.md4
-rw-r--r--.github/ISSUE_TEMPLATE/post-install.md20
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md2
5 files changed, 24 insertions, 31 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
deleted file mode 100644
index 3a25eeb1e..000000000
--- a/.github/ISSUE_TEMPLATE.md
+++ /dev/null
@@ -1,27 +0,0 @@
-
-<!-- Please describe the issue in detail here, and fill in the fields below -->
-
-### Reproducing code example:
-
-<!-- A short code example that reproduces the problem/missing feature. It should be
-self-contained, i.e., possible to run as-is via 'python myproblem.py' -->
-
-```python
-import numpy as np
-<< your code here >>
-```
-
-<!-- Remove these sections for a feature request -->
-
-### Error message:
-
-<!-- If you are reporting a segfault please include a GDB traceback, which you
-can generate by following
-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)' -->
-
diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md
index 123498224..d2df08689 100644
--- a/.github/ISSUE_TEMPLATE/bug-report.md
+++ b/.github/ISSUE_TEMPLATE/bug-report.md
@@ -24,7 +24,7 @@ https://github.com/numpy/numpy/blob/master/doc/source/dev/development_environmen
<!-- Full error message, if any (starting from line Traceback: ...) -->
-### Numpy/Python version information:
+### NumPy/Python version information:
<!-- Output from 'import sys, numpy; print(numpy.__version__, sys.version)' -->
diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md
index 38d64710b..a6a3ca423 100644
--- a/.github/ISSUE_TEMPLATE/feature-request.md
+++ b/.github/ISSUE_TEMPLATE/feature-request.md
@@ -10,7 +10,7 @@ If you're looking to request a new feature or change in functionality, including
adding or changing the meaning of arguments to an existing function, please
post your idea on the [numpy-discussion mailing list]
(https://mail.python.org/mailman/listinfo/numpy-discussion) to explain your
-reasoning before you open an issue or pull request. You can also check out our
-[Contributor Guide]
+reasoning in addition to opening an issue or pull request. You can also check
+out our [Contributor Guide]
(https://github.com/numpy/numpy/blob/master/doc/source/dev/index.rst) if you
need more information.
diff --git a/.github/ISSUE_TEMPLATE/post-install.md b/.github/ISSUE_TEMPLATE/post-install.md
new file mode 100644
index 000000000..fb8b35076
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/post-install.md
@@ -0,0 +1,20 @@
+---
+name: "Post-install/importing issue"
+about: If you have trouble importing or using NumPy after installation
+
+---
+
+<!-- Please describe the issue in detail here, and fill in the fields below. Also, check our Troubleshooting ImportError document to see if your issue is listed there: https://numpy.org/devdocs/user/troubleshooting-importerror.html -->
+
+### Steps to reproduce:
+
+<!-- Please describe the installation method (e.g. building from source, Anaconda, pip), your OS and NumPy/Python version information -->
+
+### Error message:
+
+<!-- If you are reporting a segfault please include a GDB traceback, which you
+can generate by following
+https://github.com/numpy/numpy/blob/master/doc/source/dev/development_environment.rst#debugging -->
+
+<!-- Full error message, if any (starting from line Traceback: ...) -->
+
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 1f313fd75..528580a8e 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -6,6 +6,6 @@ http://www.numpy.org/devdocs/dev/development_workflow.html
http://www.numpy.org/devdocs/dev/development_workflow.html#writing-the-commit-message
-->
-<!-- If you're submitting a new feature or substantial change in funcionality,
+<!-- If you're submitting a new feature or substantial change in functionality,
make sure you discuss your changes in the numpy-discussion mailing list first:
https://mail.python.org/mailman/listinfo/numpy-discussion -->