Skip to content

Commit 7811532

Browse files
authored
{Core} Remove temporary compatible logic in build script (#31555)
1 parent fab9fcb commit 7811532

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

build_scripts/windows/scripts/patch_models_v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def find_models_to_change(module_name):
245245
return [
246246
importlib.import_module('.'+label+'.models', main_module.__name__)
247247
for (_, label, ispkg) in pkgutil.iter_modules(main_module.__path__)
248-
if ispkg and label != 'aio' and label != '_utils'
248+
if ispkg and label != 'aio'
249249
]
250250

251251

src/azure-cli/requirements.py3.Darwin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ azure-mgmt-cdn==12.0.0
3131
azure-mgmt-cognitiveservices==13.5.0
3232
azure-mgmt-compute==34.1.0
3333
azure-mgmt-containerinstance==10.2.0b1
34-
azure-mgmt-containerregistry==14.0.0
34+
azure-mgmt-containerregistry==14.1.0b1
3535
azure-mgmt-containerservice==36.0.0
3636
azure-mgmt-core==1.5.0
3737
azure-mgmt-cosmosdb==9.8.0

src/azure-cli/requirements.py3.Linux.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ azure-mgmt-cdn==12.0.0
3131
azure-mgmt-cognitiveservices==13.5.0
3232
azure-mgmt-compute==34.1.0
3333
azure-mgmt-containerinstance==10.2.0b1
34-
azure-mgmt-containerregistry==14.0.0
34+
azure-mgmt-containerregistry==14.1.0b1
3535
azure-mgmt-containerservice==36.0.0
3636
azure-mgmt-core==1.5.0
3737
azure-mgmt-cosmosdb==9.8.0

src/azure-cli/requirements.py3.windows.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ azure-mgmt-cdn==12.0.0
3131
azure-mgmt-cognitiveservices==13.5.0
3232
azure-mgmt-compute==34.1.0
3333
azure-mgmt-containerinstance==10.2.0b1
34-
azure-mgmt-containerregistry==14.0.0
34+
azure-mgmt-containerregistry==14.1.0b1
3535
azure-mgmt-containerservice==36.0.0
3636
azure-mgmt-core==1.5.0
3737
azure-mgmt-cosmosdb==9.8.0

src/azure-cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
'azure-mgmt-cognitiveservices~=13.5.0',
7777
'azure-mgmt-compute~=34.1.0',
7878
'azure-mgmt-containerinstance==10.2.0b1',
79-
'azure-mgmt-containerregistry==14.0.0',
79+
'azure-mgmt-containerregistry==14.1.0b1',
8080
'azure-mgmt-containerservice~=36.0.0',
8181
'azure-mgmt-cosmosdb==9.8.0',
8282
'azure-mgmt-databoxedge~=1.0.0',

0 commit comments

Comments
 (0)