I’m in the process of learning how to deploy a Pyramid app to Google App Engine. (I’ve created many small webapp2-based apps.) I’m currently using Pyramid 1.3, but I see that Pyramid 1.4 now requires WebOb 1.2b3+:
Pyramid now requires WebOb 1.2b3+ (the prior Pyramid release only relied on 1.2dev+).
This is to ensure that we obtain a version of WebOb that returns request.path_info as
text.
When it’s time to upgrade to Pyramid 1.4 will this end in tears? Does anyone know if it’s possible to use your own WebOb on App Engine–or to somehow relax the requirement?
yes you only need to include the webob package in the root of your GAE project and deploy it.
webob 1.2.3 will be included in the next release as stated here.