From b43702fb30d570b8bc5c2b6ec2e5ed5ba7167878 Mon Sep 17 00:00:00 2001 From: Ales Erjavec Date: Wed, 1 Jun 2016 14:03:55 +0200 Subject: [PATCH] Remove Orange.egg-info dir from .gitignore pip collects package metadata by invoking `python setup.py egg_info` and reading information from the generated *.egg-info/ under the assumption that there is only one such directory. This can cause problems for developers who might have remaining Orange.egg-info directories in their git checkouts, causing pip install -e . to pick up obsolete dependencies, version, ... This does not solve the problem, but at least `git status` will indicate there are untracked files in the checkout and that `git clean` is in order. --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1cfb59a8f62..a7bb1a93507 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,6 @@ # Build files build dist -Orange.egg-info/* -Orange.egg-info Orange3.egg-info Orange/version.py doc/build