From d6a0276a78ff99f1a0ee7faf421e048d5edbf693 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Tue, 14 May 2019 11:47:30 +0100 Subject: [PATCH] Update gitignore file - pip install creates dist-info directories - add __pycache__ for compelteness and other byte compiled file types. --- .gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 04aa1da7b..66826bbde 100644 --- a/.gitignore +++ b/.gitignore @@ -3,10 +3,12 @@ build .cache dist docs/source/modules/deluge*.rst -*egg-info +*.egg-info/ +*.dist-info/ *.egg *.log -*.pyc +__pycache__/ +*.py[cod] *.tar.* _trial_temp .tox/