I am trying to deploy a python code to Azure Function (Runtime version:- 1.0.13021.0) where python version is 2.7.15.
I am using a python module adal
. i have mentioned adal
in my requirement.txt
file to get installed in Azure.
But while running function i am getting error, ModuleNotFoundError: No module named 'adal'
In requirement.txt
i tried with below version of adal also but same error in every case,
adal == 0.5.1
adal == 1.2.0
adal == 1.2.1
adal == 1.2.3
Can you please let me know which version of 'adal'
module is supported in python 2.7.15 ?