Skip to content

Commit

Permalink
Merge 232929b into 4a8b42b
Browse files Browse the repository at this point in the history
  • Loading branch information
alimanfoo committed Aug 3, 2018
2 parents 4a8b42b + 232929b commit f217a09
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Contributing
============

Please see the [project documentation](http://petl.readthedocs.io/en/stable/contributing.html) for information about contributing to petl.
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!--
For bug reports, please follow the template below. For enhancement proposals, feel free
to use whatever template makes sense.
-->

#### Minimal, reproducible code sample, a copy-pastable example if possible

```python
# Your code here

```

#### Problem description

<!--
Explain why the current behavior is a problem, what the expected output/behaviour
is, and why the expected output/behaviour is a better solution.
-->

#### Version and installation information

<!--
Please provide the following:
-->

* Value of ``petl.__version__``
* Version information for any third-party package dependencies that are relevant
* Version of Python interpreter
* Operating system (Linux/Windows/Mac)
* How petl was installed (e.g., "using pip into virtual environment", or "using conda")

<!--
Also, if you think it might be relevant, please provide the output from ``pip freeze`` or
``conda env export`` depending on which was used to install petl.
Thanks!
-->
16 changes: 16 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!--
Description of PR
-->

<!--
Checklist for for pull requests including new code and/or changes to existing code...
-->

* [ ] Includes unit tests
* [ ] New functions have docstrings with examples that can be run with doctest
* [ ] New functions are included in API docs
* [ ] Docstrings include notes for any changes to API or behaviour
* [ ] Travis CI passes (unit tests run under Linux)
* [ ] AppVeyor CI passes (unit tests run under Windows)
* [ ] Unit test coverage has not decreased (see Coveralls)
* [ ] All changes documented in docs/changes.rst
4 changes: 2 additions & 2 deletions docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ To verify the installation, the test suite can be run with `nose
$ pip install nose
$ nosetests -v petl

:mod:`petl` is compatible with Python versions 2.7 and 3.4, and
has been tested under Linux and Windows operating systems.
:mod:`petl` has been tested with Python versions 2.7 and 3.4-3.6
under Linux and Windows operating systems.

.. _intro_dependencies:

Expand Down

0 comments on commit f217a09

Please sign in to comment.