ubaniabalogun / serverless-package-python-functions

Serverless Framework Plugin to package python functions and their requirements
ISC License
81 stars 24 forks source link

unable to user older version of pip #34

Open davidfox-ap opened 6 years ago

davidfox-ap commented 6 years ago

I'm having issues with pip 10.0.0, but serverless-package-python-functions will not let me deploy with an earlier version of pip, say 9.0.3. Any ideas how I might get around this?

StidZhang commented 6 years ago

Check here.

MrTeale commented 6 years ago

+1 on this Issue

slime-man commented 5 years ago

https://github.com/ubaniabalogun/serverless-package-python-functions/blob/b89b839426703d2b0b7dadd38928ddc6ffb4a504/index.js#L101

This is the culprit line. pip version warning goes to stderr. I'm not sure why this package assumes failure if there is any stderror output. I think it should definitely forward the output to the end user, but it shouldn't fail.

slime-man commented 5 years ago

haha, after some shallow digging I also found #30 which. Maybe will help someone finding this issue in the future