Skip to content

Commit 8fa70a2

Browse files
authored
Merge branch 'main' into dependabot/pip/packaging-25.0
2 parents 3f23ff3 + f744c55 commit 8fa70a2

File tree

5 files changed

+31
-26
lines changed

5 files changed

+31
-26
lines changed

.github/workflows/python-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: ["ubuntu-20.04", "windows-latest"]
16+
os: ["ubuntu-latest", "windows-latest"]
1717
python_version: ["3.11"]
1818
steps:
1919
- uses: actions/checkout@v4

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ __pycache__/
55
.coverage
66
.idea/
77
.venv/
8+
venv/
9+
10+
# Bicep build artifacts (exclude .json files except parameters)
11+
infra/**/*.json
12+
!infra/**/main.parameters.json

infra/core/ai/cognitiveservices.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ resource deployment 'Microsoft.CognitiveServices/accounts/deployments@2023-05-01
4242
name: deployment.name
4343
properties: {
4444
model: deployment.model
45-
raiPolicyName: contains(deployment, 'raiPolicyName') ? deployment.raiPolicyName : null
45+
raiPolicyName: deployment.?raiPolicyName
4646
}
47-
sku: contains(deployment, 'sku') ? deployment.sku : {
47+
sku: deployment.?sku ?? {
4848
name: 'Standard'
4949
capacity: 20
5050
}

infra/core/host/container-apps.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module containerAppsEnvironment 'container-apps-environment.bicep' = {
2525

2626
module containerRegistry 'container-registry.bicep' = {
2727
name: '${name}-container-registry'
28-
scope: !empty(containerRegistryResourceGroupName) ? resourceGroup(containerRegistryResourceGroupName) : resourceGroup()
28+
scope: resourceGroup(!empty(containerRegistryResourceGroupName) ? containerRegistryResourceGroupName : resourceGroup().name)
2929
params: {
3030
name: containerRegistryName
3131
location: location

src/requirements.txt

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#
2-
# This file is autogenerated by pip-compile with Python 3.11
3-
# by the following command:
4-
#
5-
# pip-compile --output-file=requirements.txt pyproject.toml
1+
#
2+
# This file is autogenerated by pip-compile with Python 3.11
3+
# by the following command:
4+
#
5+
# pip-compile --output-file=requirements.txt pyproject.toml
66
#
77
aiofiles==24.1.0
88
# via quart
@@ -58,21 +58,21 @@ frozenlist==1.5.0
5858
# aiosignal
5959
gunicorn==23.0.0
6060
# via quartapp (pyproject.toml)
61-
h11==0.14.0
62-
# via
63-
# httpcore
64-
# hypercorn
65-
# uvicorn
66-
# wsproto
67-
h2==4.1.0
68-
# via hypercorn
69-
hpack==4.0.0
70-
# via h2
71-
httpcore==1.0.6
61+
h11==0.16.0
62+
# via
63+
# httpcore
64+
# hypercorn
65+
# uvicorn
66+
# wsproto
67+
h2==4.1.0
68+
# via hypercorn
69+
hpack==4.0.0
70+
# via h2
71+
httpcore==1.0.9
7272
# via httpx
7373
httptools==0.6.4
7474
# via quartapp (pyproject.toml)
75-
httpx==0.27.2
75+
httpx==0.27.0
7676
# via openai
7777
hypercorn==0.17.3
7878
# via quart
@@ -121,9 +121,9 @@ propcache==0.2.0
121121
# via yarl
122122
pycparser==2.22
123123
# via cffi
124-
pydantic==2.9.2
124+
pydantic==2.11.7
125125
# via openai
126-
pydantic-core==2.23.4
126+
pydantic-core==2.33.2
127127
# via pydantic
128128
pyjwt[crypto]==2.9.0
129129
# via msal
@@ -133,7 +133,7 @@ pyyaml==6.0.2
133133
# via quartapp (pyproject.toml)
134134
quart==0.20.0
135135
# via quartapp (pyproject.toml)
136-
requests==2.32.3
136+
requests==2.32.4
137137
# via
138138
# azure-core
139139
# msal
@@ -153,9 +153,9 @@ typing-extensions==4.12.2
153153
# openai
154154
# pydantic
155155
# pydantic-core
156-
urllib3==2.2.3
156+
urllib3==2.5.0
157157
# via requests
158-
uvicorn==0.32.0
158+
uvicorn==0.34.3
159159
# via quartapp (pyproject.toml)
160160
uvloop==0.20.0 ; sys_platform != "win32" and (sys_platform != "cygwin" and platform_python_implementation != "PyPy")
161161
# via quartapp (pyproject.toml)

0 commit comments

Comments
 (0)