-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
Why This Is Important
- Clean Repository: Prevents unnecessary build artifacts and cache files from cluttering version control.
- Efficiency: Reduces repository size and avoids committing files that change frequently and have no value in source control.
- Best Practices: Aligns with Python community standards for ignoring generated files.
Tasks
- Delete existing
__pycache__directories and*.egg-infofiles from the repository. - Add entries to
.gitignorefor:__pycache__/*.egg-info/
- Verify that these files are excluded from future commits.
- Update documentation (if applicable) to note that these files are ignored.
- Communicate the cleanup to contributors.
Acceptance Criteria
- All
__pycache__and*.egg-infofiles are removed from the repository history (or at least from the working tree). .gitignorecontains rules to exclude__pycache__/and*.egg-info/.- Running
git statusafter changes shows no tracked__pycache__or*.egg-infofiles. - Contributors confirm that these files are no longer committed accidentally.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels