About the Google Season of Code category

Discussion space for Django Google Summer of Code (GSoC) participants and mentors. Ask questions, coordinate work, and get guidance while following the documented contribution and mentorship process.

If you are interested in participating in GSoC with Django, please make sure to follow the documented contribution and mentorship procedures before starting work. In particular:

  • Do not start work on tickets that are not accepted.
  • Do not assign yourself to tickets that already have an owner, even if the work appears stalled.
  • Do not submit pull requests that only propose documentation changes.

These guidelines help maintain a fair process for contributors and reduce unnecessary review overhead for maintainers. If you are unsure how to proceed with a ticket or idea, ask here first so the community can help guide you.

1 Like

I have one question, There are some checks that are failing due to linting formatting so will that be a problem in my pr should i change my formatting and make a pr which passes all cli test

@shubh-gitpush Yes they do actually, you should fix the formatting issue there is a precommit feature that you can look into it basically fix all the formatting issue during the time you make a commit.
Also you shouldn’t make a new PR just for fixing formatting issues you can just make another commit after you fix that or you can use the git commit --amend command it basically modifies the most recent commit instead of making a new one ( it actually helps the maintainer during the merging process)