The best way to send feedback is to file an issue.
If you are reporting a bug, please include:
- Your operating system name and version.
- Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug.
If you are proposing a feature:
- Explain in detail how it would work.
- Keep the scope as narrow as possible, to make it easier to implement.
- Remember that this is a volunteer-driven project, and that contributions are welcome :)
Ready to contribute? Here's how to set up funky
for local development.
- Fork the
funky
repo on GitHub. - Clone your fork locally:
$ git clone [email protected]:your_name_here/funky.git
- Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:
$ mkvirtualenv funky $ cd funky/ $ python setup.py develop
- Create a branch for local development:
Now you can make your changes locally.
$ git checkout -b name-of-your-bugfix-or-feature
- When you're done making changes, check that all the tests are still passing::
$ python setup.py test or py.test
- Additionally, any code added / changed is expected to meet flake8 style guidelines.
Make sure by running::
$ flake8 funky tests
- Commit your changes and push your branch to GitHub::
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature
- Submit a pull request through the GitHub website.
The pull request should work for Python 3.4, 3.5 and 3.6, and for PyPy. Check Travis CI and make sure that the tests pass for all supported Python versions.
In addition, for all code contributions excluding bugfixes, it is expected that the documentation has been updated and/or additional documentation has been added.
Furthermore, additional tests should be created before submitting any major changes to the codebase.
A reminder for the maintainers on how to deploy. Make sure all your changes are committed. Then run:
$ bumpversion patch # possible: major / minor / patch
$ git push
$ git push --tags
Travis will then deploy to PyPI if tests pass.