Welcome! Contributions to project are greatly appreciated! Everyone can help, but before work read some simple rules listed below.
To report a bug visit https://github.com/dokato/connectivipy/issues and create new issue. Each issue should inlcude:
- Your operating system name and version.
- Version of
connectivipy
.
>> import connectivipy
>> connectivipy.__version__
- Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug.
[bug]
tag in a title.
Your feature should be posted on https://github.com/dokato/connectivipy/issues
and as specifically descripted as it can be (with [feature]
tag). Consider including some
links or references to external sources. Mayebe you'd like to consider
your own contribution? Pull requests welcome though!
Look through the GitHub issues for features or bugs. Anything tagged with feature / bugs is open to whoever wants to implement it or fix it.
If you are new to Git please read first GitHub help pages.
In few simple steps you can set up connectivipy
on your machine:
- Fork the
connectivipy
repo to your GitHub profile. - Clone your fork locally:
$ git clone [email protected]:your_name_here/connectivipy.git
- Create a branch for local development:
$ cd connectivipy
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
- Commit your changes and push them to GitHub:
$ git add .
$ git commit -m "Your detailed description of your changes."
$ git push origin name-of-your-bugfix-or-feature
-
Check your code style using flake8.
-
Submit a pull request through the GitHub website.
Remember about writing test and validating your changes i.e. using nosetests. To run a subset of tests just type:
$ nosetests tests
To get nosetests use pip.
Before you submit a pull request, check that it meets the following guidelines:
- The pull request should include tests.
- If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring. Remember about completing CHANGELOG.md with your contribution.
- The pull request should work for Python 2.7, 3.3, 3.4. It will be automatically tested with Travis CI.