From 2a36f4434f6c4780392130d6efdc9b055cf25d09 Mon Sep 17 00:00:00 2001 From: Metallicow Date: Sat, 22 Feb 2014 00:22:15 -0600 Subject: [PATCH 1/3] PyInstaller .manifest # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.exe.manifest *.manifest Example template ``` Description ``` --- Python.gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 76f2a469..ad380ed3 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -22,6 +22,12 @@ var/ .installed.cfg *.egg +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.exe.manifest +*.manifest + # Installer logs pip-log.txt pip-delete-this-directory.txt From 8b4090becb4a3494fabd27c2e233323113f01224 Mon Sep 17 00:00:00 2001 From: Metallicow Date: Sat, 22 Feb 2014 03:48:38 -0600 Subject: [PATCH 2/3] .spec files also --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index ad380ed3..1024cd49 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -27,6 +27,7 @@ var/ # before PyInstaller builds the exe, so as to inject date/other infos into it. *.exe.manifest *.manifest +*.spec # Installer logs pip-log.txt From ff81e9faeba86b05b45100abf6daf1a65c0655f2 Mon Sep 17 00:00:00 2001 From: Metallicow Date: Sun, 23 Feb 2014 02:48:20 -0600 Subject: [PATCH 3/3] remove .exe.manifest ; Redundant --- Python.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 1024cd49..82f31305 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -25,7 +25,6 @@ var/ # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. -*.exe.manifest *.manifest *.spec