An Azure service that provides an event-driven serverless compute platform.
Hi @Animesh Kashyap,
To fix the runtime version error during your Azure Function (Python) deployment, follow these steps. Ensure the correct runtime version is selected in your project settings, matching the Python version in requirements.txt. Update Azure Functions Core Tools to the latest version and verify your deployment environment is set up correctly, with the agent pool running on Ubuntu. If your function app isn't at the root of the repository, ensure the pip install step references the correct location for the .python_packages folder. Use the --build-native-deps flag for functions with native dependencies and check for conflicts between custom dependencies and built-in Python modules.
For further clarification, please refer to the following documentations: Document1, Document2
I hope this helps resolve your issue. Feel free to reach out if you have further concerns.