I want to move an app from the Python 3.7 standard environment to the Python 3.6 flex environment.
Python 3.7 comes with pip 18, Python 3.6 comes with pip 9. Pip 10 introduced a very useful feature, build dependencies. Many analytics packages need this to work, otherwise you have to install build dependencies like Cython manually in a separate step. That is obviously a non-starter in GAE. Outside of GAE the solution is pip install --upgrade pip. Is it possible to have the Python 3.6 environment update its pip before it runs pip install -r requirements.txt? Adding pip to requirements.txt has no effect. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/3b8f76cc-c41f-4573-9668-da75d4f04344%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
