Skip to content

Commit 9a09cfb

Browse files
committed
github templates
1 parent 2b439d4 commit 9a09cfb

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed
File renamed without changes.

.github/ISSUE_TEMPLATE.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!--
2+
3+
For bug reports, please follow the template below. For enhancement proposals, feel free
4+
to use whatever template makes sense.
5+
6+
-->
7+
8+
#### Minimal, reproducible code sample, a copy-pastable example if possible
9+
10+
```python
11+
# Your code here
12+
13+
```
14+
15+
#### Problem description
16+
17+
Explain why the current behavior is a problem, what the expected output/behaviour
18+
is, and why the expected output/behaviour is a better solution.
19+
20+
#### Version and installation information
21+
22+
Please provide the following:
23+
24+
* Value of ``zarr.__version__``
25+
* Value of ``numcodecs.__version__``
26+
* Version of Python interpreter
27+
* Operating system (Linux/Windows/Mac)
28+
* How Zarr was installed (e.g., "using pip into virtual environment", or "using conda")
29+
30+
Also, if you think it might be relevant, please provide the output from ``pip list`` or
31+
``conda list`` depending on which was used to install Zarr.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[Description of PR]
2+
3+
TODO:
4+
* [ ] Unit tests and/or doctests in docstrings
5+
* [ ] ``tox -e py36`` passes locally
6+
* [ ] ``tox -e py27`` passes locally
7+
* [ ] Docstrings and API docs for any new/modified user-facing classes and functions
8+
* [ ] New/modified features documented in docs/tutorial.rst
9+
* [ ] Changes documented in docs/release.rst
10+
* [ ] ``tox -e docs`` passes locally
11+
* [ ] AppVeyor and Travis CI passes
12+
* [ ] Test coverage to 100% (Coveralls passes)

0 commit comments

Comments
 (0)