Rodrigo Goncalves
Rodrigo Goncalves
Just tried to use the new Docker image for Python 3.13 with no luck. At least locally it does not recognize the function and no clear explanations on the logs....
I think I found a bug introduced on this release: [BUG #1797](https://github.com/Azure/azure-functions-python-worker/issues/1797)
I found myself using the following approach. ``` # Install python dependencies COPY pyproject.toml uv.lock /app/ RUN uv export --format requirements.txt -o requirements.txt RUN uv pip install --system -r requirements.txt...
The same error here, skipping the pip upgrade for now.