Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 894 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (19 loc) · 894 Bytes

How to contribute

Bug reports or feature requests

Open an issue with your bug report or feature request.

Contributing code

  1. Create a fork

  2. Get Miniconda.

  3. Get anaconda-project...

     $ conda install -n base anaconda-project 
    
  4. In the repo, run...

     $ anaconda-project prepare
     anaconda-project run setup
    
  5. Keep the style consistent and the quality high by running Black and Pytest...

     $ anaconda-project run black
     $ anaconda-project run tests
    
  6. Push a commit with a meaningful message to your own fork.

  7. Submit a pull request. The PR should be tied to a GitHub issue.

For Questions