Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: runserver.spec

Issue 6541524925939712: Issue 2197 - [cms] Update PyInstaller configuration (Closed)
Patch Set: Created March 20, 2015, 10:32 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runserver.spec
===================================================================
--- a/runserver.spec
+++ b/runserver.spec
@@ -1,15 +1,26 @@
# PyInstaller spec, run "pyinstaller runserver.spec" from repository root to build
a = Analysis(
['runserver.py'],
pathex=['.'],
hiddenimports=[],
- excludes=['sqlite3', 'django', 'ssl', '_ssl', 'OpenSSL', '_hashlib', 'unittest'],
+ excludes=[
+ 'distutils',
+ 'doctest',
+ 'ssl',
+ '_ssl',
+ 'werkzeug',
Sebastian Noack 2015/03/21 11:26:48 Are you sure we should exclude werkzeug from the b
Wladimir Palant 2015/03/21 11:36:34 It pulls in lots of dependencies, and the debugger
Sebastian Noack 2015/03/21 12:51:45 Fair enough.
+
+ # Mac-specific
+ 'Carbon',
+ 'Finder',
+ 'StdSuites',
+ ],
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld