-
-
Notifications
You must be signed in to change notification settings - Fork 381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add option to fallback for using different Python version #63
Comments
I'd love to give it a go. I understand how to add the flag, but I have yet to wrap my head around the idea how the Python interpreter is passed. Does it rely on the |
@dasdachs I'm not entirely sure which |
The |
@eliasdorneles That is it, thank you. @freakboy3742 Thank you for the clarification. I think I have a better understanding of the process. I'll give it my best, write some tests and return the favour with a decent pull request. |
I'm at the PyCon sprints and will be attempting to solve this problem |
Ok, I happen to be working on Linux, which makes this a little bit odder. Right now, the linux distribution command ( So, for me to test this personally, it would be better to first start tackling flatpak distrubtion (#2). Others on apple/Windows might have more success testing this. |
On reflection, I'm not convinced this is necessarily a good idea - it has the potential to cause all sorts of problems when installing support packages, as the version of pip used to install dependencies will mis-identify the package versions that are valid. |
Currently, we only use the template and support package for the user's running Python version.
It would be nice to allow users to override this, making it easier for people using the most recent Python versions (and maybe even the release candidates) to try things out.
It would be great to be able to do
python setup.py ios --use-python-version=3.6
=)The text was updated successfully, but these errors were encountered: