We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ignore_setup_py
build.py
1 parent 70f9224 commit b91917cCopy full SHA for b91917c
1 file changed
pythonforandroid/bootstraps/common/build/build.py
@@ -323,8 +323,12 @@ def make_package(args):
323
f.write("P4A_MINSDK=" + str(args.min_sdk_version) + "\n")
324
325
# Package up the private data (public not supported).
326
- use_setup_py = get_dist_info_for("use_setup_py",
327
- error_if_missing=False) is True
+ use_setup_py = (
+ get_dist_info_for("use_setup_py", error_if_missing=False) is True
328
+ and
329
+ get_dist_info_for("ignore_setup_py", error_if_missing=False) is not True
330
+ )
331
+
332
private_tar_dirs = [env_vars_tarpath]
333
_temp_dirs_to_clean = []
334
try:
0 commit comments