[google-appengine] Re: GCP deploy with 'python_version: 3.5' still uses python 3.6

2018-08-03 Thread 'Sam (Google Cloud Support)' via Google App Engine
Your runtime settings looks fine. I suspect the issue might be in your source code because I tried to reproduce it but I was able to deploy without any errors and did not note any errors with python version in stack trace. So, I suggest you follow this Quickstart for deploying a python app in A

[google-appengine] Re: GCP deploy with 'python_version: 3.5' still uses python 3.6

2018-08-02 Thread epssdev
If I use .. "runtime_config: python_version: 3" in app.yaml file, then the runtime config uses python3.6 by default. I specifically want it to use python3.5.5 and not python3.6. REF: https://cloud.google.com/appengine/docs/flexible/python/reference/app-yaml === You can use the runtime_config se

[google-appengine] Re: GCP deploy with 'python_version: 3.5' still uses python 3.6

2018-08-02 Thread samiislam via Google App Engine
Please would it be possible to update the app.yaml file with the following information and see what is the behavior. App.yaml -- #[START RUNTIME] runtime: python env: flex entrypoint: gunicorn -b :$PORT mysite.wsgi runtime_config: python_version: 3 #[END RUNTIME] P