Package azure-storage 0.37.0
Fails to Install During fivetran deploy
Issue
The installation of the azure-storage v0.37.0
package fails due to deprecation.
Environment
Fivetran Connector SDK
Resolution
If your requirements.txt
specifies azure-storage==0.37.0
or azure-storage
, resolve the issue by doing either of the following:
Manually update
requirements.txt
- Changeazure-storage==0.37.0
toazure-storage==0.36.0
.Follow the recommended update prompts:
If a single package shown in the prompt is
azure-storage
, enterY
to update it to the latest stable version (0.36.0).If multiple packages are listed, you can do either of the following:
- Enter
Y
to update all packages. - Cancel the deployment, manually update
requirements.txt
, and retry.
- Enter
Cause
PyPI lists azure-storage v0.37.0
as the latest version, but this package is deprecated and unstable. Use the most recent stable release, azure-storage v0.36.0
, instead.