diff --git a/builds/azure-pipelines/template-steps-build-test.yml b/builds/azure-pipelines/template-steps-build-test.yml index dc1ec6cf5..c89291426 100644 --- a/builds/azure-pipelines/template-steps-build-test.yml +++ b/builds/azure-pipelines/template-steps-build-test.yml @@ -131,7 +131,7 @@ steps: - script: | pip3 install -r requirements.txt workingDirectory: $(Build.SourcesDirectory)/samples/samples-python - displayName: Install azure-functions-1.11.3b1 + displayName: Install samples-python dependencies - task: Maven@3 displayName: Build Java Samples diff --git a/docs/GeneralSetup.md b/docs/GeneralSetup.md index 43d070abe..d6eaa833a 100644 --- a/docs/GeneralSetup.md +++ b/docs/GeneralSetup.md @@ -130,12 +130,6 @@ These steps can be done in the Terminal/CLI or with PowerShell. } ``` - Add a preview version of the Python functions library to `requirements.txt`. - - ```txt - azure-functions==1.11.3b1 - ``` - Add a setting in `local.settings.json` to isolate the worker dependencies. ```json diff --git a/samples/samples-python/requirements.txt b/samples/samples-python/requirements.txt index db0cf11fb..6bb1e59d0 100644 --- a/samples/samples-python/requirements.txt +++ b/samples/samples-python/requirements.txt @@ -1,3 +1,3 @@ # Do not include azure-functions-worker as it may conflict with the Azure Functions platform -azure-functions==1.11.3b1 \ No newline at end of file +azure-functions \ No newline at end of file