Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information