-
Notifications
You must be signed in to change notification settings - Fork 2k
Fixes an issue regarding blacklist and bytecode compile + some cleanup#2693
Merged
misl6 merged 1 commit intokivy:developfrom Nov 4, 2022
Merged
Fixes an issue regarding blacklist and bytecode compile + some cleanup#2693misl6 merged 1 commit intokivy:developfrom
misl6 merged 1 commit intokivy:developfrom
Conversation
Member
When building an app via python-for-android (without using buildozer on top of it), the app may fail to build.
python-for-android refuses to build due to a python file that is located in a blacklisted folder (via blacklist.txt) as that file is failing the byte-compile step.
That should not happen, as a blacklisted folder (E.g. venv or .git) may contain a python file that can't be byte-compiled.
Also, byte-compiling a blacklisted folder may lead to an increase of the build time.
This PR targets the above-mentioned issue, and the following minor ones:
- As of Python 3.5, the
.pyofilename extension is no longer used and has been removed in favour of extension.pyc
All the references topyohas been removed.--no-compile-pyobuild option has been removed in favor of--no-byte-compile-python, which doesn't refer to a specific filename extension. .apkand.aabare not blacklisted by default. The first ever build will work, but the subsequent one will try to also include the.apkor.aabinto the artifact. That will lead to an increase in size and a potential failure during the final gradle step.
AndreMiras
approved these changes
Oct 24, 2022
Member
AndreMiras
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great catch and good clean up thanks!
shyamnathp
pushed a commit
to shyamnathp/python-for-android
that referenced
this pull request
Feb 17, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.