Skip to content Skip to sidebar Skip to footer

Patch Django Site Package From A Pull Request Using Pip

I need to apply pull request 51 to a locally installed Site Package in my Django project but I am not sure how it should be done without applying directly to the local library. I

Solution 1:

You shouldn't modify installed packages.

Fork the project and apply the PR to your fork, then point requirements.txt at the fork.


Post a Comment for "Patch Django Site Package From A Pull Request Using Pip"