Author: Armin Rigo <[email protected]>
Branch:
Changeset: r97876:54854c13aaba
Date: 2019-10-28 12:56 +0000
http://bitbucket.org/pypy/pypy/changeset/54854c13aaba/
Log: Merged in danchr/pypy/allow-forcing-no-embed (pull request #676)
package: allow suppressing embedded dependencies with an envvar
diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -320,6 +320,8 @@
options.no_tk = True
if os.environ.has_key("PYPY_EMBED_DEPENDENCIES"):
options.embed_dependencies = True
+ elif os.environ.has_key("PYPY_NO_EMBED_DEPENDENCIES"):
+ options.embed_dependencies = False
if not options.builddir:
# The import actually creates the udir directory
from rpython.tool.udir import udir
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit