From 589c8d158a455d50cc16a2ea079637f9f76488b0 Mon Sep 17 00:00:00 2001 From: robk-tahoe Date: Tue, 22 Jan 2008 19:32:55 -0700 Subject: [PATCH] fix build breakage caused by auto_deps setuptools stuff zooko recently added a runtime check, via setuptools, that specific versions of various packages were reported as available through setuptools at runtime. however exe and app builds run with collected egg contents, not linked against entire eggs, i.e. the code is transcluded into a single library.zip thus setuptools reports that those specific version cannot be reported as available, though they are in fact available built into the library this disables that runtime check if the app is running 'frozen' --- _auto_deps.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_auto_deps.py b/_auto_deps.py index f66ef83f..4bc374cf 100644 --- a/_auto_deps.py +++ b/_auto_deps.py @@ -5,6 +5,9 @@ install_requires=["zfec >= 1.1.0", "nevow >= 0.6.0", "zope.interface >= 3.1.0", ] +import sys +if hasattr(sys, 'frozen'): + install_requires=[] def require_auto_deps(): try: -- 2.45.2