Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.48 KB

CONTRIBUTING.md

File metadata and controls

30 lines (23 loc) · 1.48 KB

Contributing to python-glmnet

We welcome bug reports and pull requests from everyone! This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

Getting Started

  1. Fork it ( https://github.com/civisanalytics/python-glmnet/fork )
  2. Install the dependencies (pip install -r requirements.txt)
  3. Make sure you are able to run the test suite locally (nosetests -v)
  4. Create a feature branch (git checkout -b my-new-feature)
  5. Make your change. Don't forget tests
  6. Make sure the test suite, including your new tests, passes (nosetests -v)
  7. Commit your changes (git commit -am 'Add some feature')
  8. Push to the branch (git push origin my-new-feature)
  9. Create a new pull request
  10. If the CircleCI build fails, address any issues

Tips

Thank you for taking the time to contribute to python-glmnet!