Michael Lenaghan
Michael Lenaghan

Reputation: 113

Pyramid 1.4 requires WebOb 1.2b3+. Google App Engine supplies WebOb 1.1.1. Is this going to end in tears?

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?

Upvotes: 1

Views: 214

Answers (1)

aschmid00
aschmid00

Reputation: 7158

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.

Upvotes: 1

Related Questions