Skip to content

Commit

Permalink
Remove Orange.egg-info dir from .gitignore
Browse files Browse the repository at this point in the history
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
ales-erjavec committed Jun 1, 2016
1 parent 9395330 commit b43702f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Build files
build
dist
Orange.egg-info/*
Orange.egg-info
Orange3.egg-info
Orange/version.py
doc/build
Expand Down

0 comments on commit b43702f

Please sign in to comment.