I just landed a change to how the Python virtualenv is populated during configure. The short story is there are no more .egg-info/ directories created in the source directory as part of virtualenv population.

These directories are no longer ignored by .hgignore and .gitignore, so the next time you run |hg status| or |git status| you may see a lot of untracked files.

Instructions for removing the cruft are available in the commit message at https://hg.mozilla.org/integration/mozilla-inbound/rev/d034d1924fc7

Reprinted here for convenience:

$ hg status -u | grep .egg-info | xargs rm -rf
$ git ls-files -o '*.egg-info*' | xargs rm -rf
_______________________________________________
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform

Reply via email to