You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@AndreMiras Do you have a suggested approach to solving this? Perhaps a first step would be to import a version number as a constant from a central py file? Seems cleaner than an env variable....
I imagine it could be retrieved dynamically from the compiled host python version.
So we could have maybe an helper function that would return that path dynamically and use it in all the places. I think that could be a good start.
Also I'm suspecting setting the PYTHONPATH may not actually be needed for most of the recipes, this should be fairly easy to find out.
Versions
Describe the bug
Recipes often have hardcoded references to Python versions, for instance:
This is a problem because some recipes may then not work with Python 3.7 or 3.8 while it should work with both.
To Reproduce
grep -r 'python3.[78]' kivy_ios/recipes/
Expected behavior
Instead we would like these to dynamically use the target Python version.
The text was updated successfully, but these errors were encountered: