You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[serverless-python-requirements] Make plugin compatible with version 6.0.0
With version `6.0.0` of `serverless-python-requirements` they switched to use official AWS docker images.
More info can be found in serverless/serverless-python-requirements#724
So we don’t need `lambci/lambda` anymore.
With this change everyone who is using `serverless-python-requirements` plugin and will update `serverless-builder`, would have to upgrade `serverless-python-requirements` itself.
I was considering two less breaking change approach like:
1. Introduce new plugin class
```
class PythonRequirements600 {
}
```
2. Modification of `PythonRequirements.__init__` and add `version` parameter
But to be honest I don’t think it’s worth to maintain this backward compatibility.
0 commit comments