Skip to content

Commit

Permalink
fix: constrain azure-identity (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
digimaun authored Sep 19, 2024
1 parent 86fef99 commit f547504
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion azext_edge/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import os

VERSION = "0.7.0a9"
VERSION = "0.7.0a10"
EXTENSION_NAME = "azure-iot-ops"
EXTENSION_ROOT = os.path.dirname(os.path.abspath(__file__))
USER_AGENT = "IotOperationsCliExtension/{}".format(VERSION)
1 change: 0 additions & 1 deletion azext_edge/edge/providers/orchestration/rp_namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

RP_NAMESPACE_SET = frozenset(
[
"Microsoft.IoTOperationsOrchestrator",
"Microsoft.IoTOperations",
"Microsoft.DeviceRegistry",
"Microsoft.SecretSyncController",
Expand Down
2 changes: 1 addition & 1 deletion azext_edge/edge/providers/orchestration/targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def _handle_apply_targets(
deploy_params = {}

for param in param_to_target:
if param in built_in_template_params and param_to_target[param]:
if param in built_in_template_params and param_to_target[param] is not None:
deploy_params[param] = {"value": param_to_target[param]}

return template_copy, deploy_params
Expand Down
1 change: 0 additions & 1 deletion azext_edge/tests/edge/init/test_base_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ def test_register_providers(mocker, registration_state):
)

iot_ops_rps = [
"Microsoft.IoTOperationsOrchestrator",
"Microsoft.IoTOperations",
"Microsoft.DeviceRegistry",
"Microsoft.SecretSyncController",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
DEPENDENCIES = [
"rich>=13.6,<14.0",
"kubernetes>=27.2,<29.0",
"azure-identity>=1.14.1,<2.0",
"azure-identity>=1.14.1,<1.18.0",
"protobuf~=4.25.0",
"opentelemetry-proto~=1.20.0",
"packaging>=23.2",
Expand Down

0 comments on commit f547504

Please sign in to comment.