File tree Expand file tree Collapse file tree 5 files changed +31
-26
lines changed Expand file tree Collapse file tree 5 files changed +31
-26
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- os : ["ubuntu-20.04 ", "windows-latest"]
16
+ os : ["ubuntu-latest ", "windows-latest"]
17
17
python_version : ["3.11"]
18
18
steps :
19
19
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -5,3 +5,8 @@ __pycache__/
5
5
.coverage
6
6
.idea /
7
7
.venv /
8
+ venv /
9
+
10
+ # Bicep build artifacts (exclude .json files except parameters)
11
+ infra /** /* .json
12
+ ! infra /** /main.parameters.json
Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ resource deployment 'Microsoft.CognitiveServices/accounts/deployments@2023-05-01
42
42
name : deployment .name
43
43
properties : {
44
44
model : deployment .model
45
- raiPolicyName : contains ( deployment , 'raiPolicyName' ) ? deployment . raiPolicyName : null
45
+ raiPolicyName : deployment .? raiPolicyName
46
46
}
47
- sku : contains ( deployment , 'sku' ) ? deployment . sku : {
47
+ sku : deployment .? sku ?? {
48
48
name : 'Standard'
49
49
capacity : 20
50
50
}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ module containerAppsEnvironment 'container-apps-environment.bicep' = {
25
25
26
26
module containerRegistry 'container-registry.bicep' = {
27
27
name : '${name }-container-registry'
28
- scope : !empty (containerRegistryResourceGroupName ) ? resourceGroup ( containerRegistryResourceGroupName ) : resourceGroup ()
28
+ scope : resourceGroup ( !empty (containerRegistryResourceGroupName ) ? containerRegistryResourceGroupName : resourceGroup (). name )
29
29
params : {
30
30
name : containerRegistryName
31
31
location : location
Original file line number Diff line number Diff line change 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
6
6
#
7
7
aiofiles == 24.1.0
8
8
# via quart
@@ -58,21 +58,21 @@ frozenlist==1.5.0
58
58
# aiosignal
59
59
gunicorn == 23.0.0
60
60
# 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
72
72
# via httpx
73
73
httptools == 0.6.4
74
74
# via quartapp (pyproject.toml)
75
- httpx == 0.27.2
75
+ httpx == 0.27.0
76
76
# via openai
77
77
hypercorn == 0.17.3
78
78
# via quart
@@ -121,9 +121,9 @@ propcache==0.2.0
121
121
# via yarl
122
122
pycparser == 2.22
123
123
# via cffi
124
- pydantic == 2.9.2
124
+ pydantic == 2.11.7
125
125
# via openai
126
- pydantic-core == 2.23.4
126
+ pydantic-core == 2.33.2
127
127
# via pydantic
128
128
pyjwt [crypto ]== 2.9.0
129
129
# via msal
@@ -133,7 +133,7 @@ pyyaml==6.0.2
133
133
# via quartapp (pyproject.toml)
134
134
quart == 0.20.0
135
135
# via quartapp (pyproject.toml)
136
- requests == 2.32.3
136
+ requests == 2.32.4
137
137
# via
138
138
# azure-core
139
139
# msal
@@ -153,9 +153,9 @@ typing-extensions==4.12.2
153
153
# openai
154
154
# pydantic
155
155
# pydantic-core
156
- urllib3 == 2.2.3
156
+ urllib3 == 2.5.0
157
157
# via requests
158
- uvicorn == 0.32.0
158
+ uvicorn == 0.34.3
159
159
# via quartapp (pyproject.toml)
160
160
uvloop == 0.20.0 ; sys_platform != "win32" and (sys_platform != "cygwin" and platform_python_implementation != "PyPy" )
161
161
# via quartapp (pyproject.toml)
You can’t perform that action at this time.
0 commit comments