From c15dd007ac6b043fc543a565da31a779cd6f4531 Mon Sep 17 00:00:00 2001 From: Ewen McNeill Date: Sat, 8 Jun 2019 12:52:37 +1200 Subject: [PATCH] tinyprog: Ignore pip-wheel-metadata "pip-wheel-metadata" is created alongside setup.py, by "pip install ." (used for development). See https://github.com/pypa/pip/issues/6213 for discussion of this clutter (issue currently open; might be moved to another location, eg build/pip-wheel-metadata or .pip-wheel-metadata, in a later version). --- programmer/.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/programmer/.gitignore b/programmer/.gitignore index 25fe328..197949b 100644 --- a/programmer/.gitignore +++ b/programmer/.gitignore @@ -9,6 +9,10 @@ __pycache__/ *~ tinyprog/full_version.py +# due to pip install . (for development) +# https://github.com/pypa/pip/issues/6213 +pip-wheel-metadata + # due to using tox and pytest .tox .coverage