[tor-commits] [stem/master] Exclude gitignore resources

atagar at torproject.org atagar at torproject.org
Tue Dec 6 17:52:21 UTC 2016


commit cb0bdac2b82f7b5cb41442a25a37e4ce3fb69353
Author: Damian Johnson <atagar at torproject.org>
Date:   Fri Nov 25 15:43:36 2016 -0800

    Exclude gitignore resources
    
    Oops! Dererk noticed our docs/_build/* is present in the tarballs we upload.
    Turns out test/data/* is too. Excluding things specified by our gitignore.
    We'll need to be careful to double check that there's no untracked files before
    uploads...
---
 MANIFEST.in | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/MANIFEST.in b/MANIFEST.in
index 086a5db..d35f06a 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -8,4 +8,10 @@ include tox.ini
 graft docs
 graft test
 global-exclude __pycache__
-global-exclude *.py[co]
+global-exclude *.orig
+global-exclude *.pyc
+global-exclude *.swp
+global-exclude *.swo
+global-exclude .tox
+recursive-exclude test/data *
+recursive-exclude docs/_build *





More information about the tor-commits mailing list