HTK / google-calendar-simple-api /CONTRIBUTING.md
faori's picture
Upload folder using huggingface_hub
550665c verified

A newer version of the Gradio SDK is available: 5.0.0

Upgrade

Contributing to GCSA

Welcome and thank you for considering contributing to Google Calendar Simple API open source project!

Before contributing to this repository, please first discuss the change you wish to make via Issue, GitHub Discussion, or Discord. Don’t hesitate to ask! Issue submissions, discussions, suggestions are as welcomed contributions as pull requests.

Steps to contribute changes

  1. Fork the repository
  2. Clone it with git clone git@github.com:{your_username}/google-calendar-simple-api.git
  3. Install dependencies if needed with pip install -e . (or pip install -e ".[dev]" if you want to run tests, compile documentation, etc.). Use virtualenv to avoid polluting your global python
  4. Make and commit the changes. Add closes #{issue_number} to commit message if applies
  5. Run the tests with tox (these will be run on pull request):
    • tox - all the tests
    • tox -e pytest - unit tests
    • tox -e flake8 - style check
    • tox -e sphinx - docs compilation test
  6. Push
  7. Create pull request
    • towards dev branch if the changes require a new GCSA version (i.e. changes in gcsa module)
    • towards master branch if they don't (e.x. changes in README, docs, tests)

While contributing

  • Follow the Code of conduct
  • Follow the pep8 and the code style of the project (use your best judgement)
  • Add documentation of your changes to code and/or to read-the-docs if needed (use your best judgement)
  • Add tests if needed (use your best judgement)