This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add Lib/site-packages to .gitignore
Type: enhancement Stage: resolved
Components: Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Dennis Sweeney
Priority: normal Keywords: patch

Created on 2022-03-14 03:21 by Dennis Sweeney, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 31862 merged Dennis Sweeney, 2022-03-14 03:23
Messages (2)
msg415114 - (view) Author: Dennis Sweeney (Dennis Sweeney) * (Python committer) Date: 2022-03-14 03:21
It would be nice to add the following to .gitignore, so that I can `./python -m pip install [whatever]` without overwhelming the output of `git status`.

Lib/site-packages/*
!Lib/test/data/README.txt
msg415115 - (view) Author: Dennis Sweeney (Dennis Sweeney) * (Python committer) Date: 2022-03-14 03:27
I made a copy/paste error, it should be:

Lib/site-packages/*
!Lib/site-packages/README.txt
History
Date User Action Args
2022-04-11 14:59:57adminsetgithub: 91164
2022-03-14 19:07:21Dennis Sweeneysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2022-03-14 03:27:52Dennis Sweeneysetmessages: + msg415115
2022-03-14 03:23:01Dennis Sweeneysetkeywords: + patch
stage: patch review
pull_requests: + pull_request29960
2022-03-14 03:21:53Dennis Sweeneycreate