Skip to content

Commit f33bda0

Browse files
hallvictoriaAzureFunctionsPythonVictoria Hall
authored
build: update Python SDK Version to 1.23.0b2 (#1645)
* Update Python SDK Version to 1.23.0b2 * skip vulnerability scan in public for sdk releases * skip emulator tests in public for sdk releases * skip build step in public build for sdk releases * possibly need to change public build dependsOn * nicer formatting --------- Co-authored-by: AzureFunctionsPython <[email protected]> Co-authored-by: Victoria Hall <[email protected]>
1 parent 79e2b77 commit f33bda0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

eng/ci/public-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ extends:
5252
- stage: Build
5353
jobs:
5454
- template: /eng/templates/jobs/build.yml@self
55+
# Skip the build stage for SDK and Extensions release branches. This stage will fail because pyproject.toml contains the updated (and unreleased) library version
56+
condition: and(eq(variables.isSdkRelease, false), eq(variables.isExtensionsRelease, false), eq(variables['USETESTPYTHONSDK'], false), eq(variables['USETESTPYTHONEXTENSIONS'], false))
5557
- stage: RunUnitTests
5658
dependsOn: Build
5759
jobs:

eng/templates/jobs/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ jobs:
2020
python -m pip install --upgrade pip
2121
python -m pip install .
2222
displayName: 'Build python worker'
23-
# Skip the build stage for SDK and Extensions release branches. This stage will fail because pyproject.toml contains the updated (and unreleased) library version
24-
condition: and(eq(variables.isSdkRelease, false), eq(variables.isExtensionsRelease, false), eq(variables['USETESTPYTHONSDK'], false), eq(variables['USETESTPYTHONEXTENSIONS'], false))
2523
- bash: |
2624
pip install pip-audit
2725
pip-audit -r requirements.txt
28-
displayName: 'Run vulnerability scan'
26+
displayName: 'Run vulnerability scan'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
"Intended Audience :: Developers"
2727
]
2828
dependencies = [
29-
"azure-functions==1.23.0b1",
29+
"azure-functions==1.23.0b2",
3030
"python-dateutil ~=2.9.0",
3131
"protobuf~=3.19.3; python_version == '3.7'",
3232
"protobuf~=4.25.3; python_version >= '3.8'",

0 commit comments

Comments
 (0)