From 866572d481b1a2d3dfa11fe423c0ae3ed735d3ed Mon Sep 17 00:00:00 2001 From: Sam Roeca Date: Fri, 25 Jan 2019 14:23:05 -0500 Subject: [PATCH] Add pip-wheel-metadata to Python.gitignore PEP-517 has resulted in some updates to the Python build process. As a result, a new directory called pip-wheel-metadata is created on fresh builds. This PR adds this directory into the Python default gitignore. See https://github.com/pypa/pip/blob/e5f4bbb7ddff87f48f2b5815513e4211ccdde83a/src/pip/_internal/req/req_install.py#L568 --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 11614af2..0447b8bd 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -20,6 +20,7 @@ parts/ sdist/ var/ wheels/ +pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg