All, My Azure Function is Failing with error :
ModuleNotFoundError: No module named '_cffi_backend
Here is my requirement.txt file
azure-functions
azure-functions-durable
azure-identity
azure-storage-blob
requests
python-dateutil
cffi
My requirement file has cffi package and using devops pipeline these package get installed at runtime, generate .zip for azure functions. But its still failing.
I have tried by providing version number as well(PFB) still no luck.
azure-core==1.19.0
azure-storage-blob==12.9.0
azure-storage-file-datalake==12.4.0
certifi==2021.5.30
cffi==1.14.6
charset-normalizer==2.0.6
cryptography==35.0.0
idna==3.2
isodate==0.6.0
msrest==0.6.21
oauthlib==3.1.1
pycparser==2.20
requests==2.26.0
requests-oauthlib==1.3.0
six==1.16.0
urllib3==1.26.7
msal
Can someone help?