Skip to content
Snippets Groups Projects
Commit 258cd118 authored by poka's avatar poka
Browse files

update script

parent 694c682a
No related branches found
No related tags found
No related merge requests found
Pipeline #36774 waiting for manual action
......@@ -28,8 +28,8 @@ def update_dependency_versions(dependencies_section):
return
for package, details in dependencies_section.items():
# Skip if it's an SDK or Git dependency
if isinstance(details, dict) and ('sdk' in details or 'git' in details):
# Skip if it's an SDK, Git, or path dependency
if any(key in details for key in ['sdk', 'git', 'path']):
continue
# Update version if the package exists in lock_versions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment