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

update script

parent 694c682a
Branches
Tags
No related merge requests found
Pipeline #36774 waiting for manual action
...@@ -28,8 +28,8 @@ def update_dependency_versions(dependencies_section): ...@@ -28,8 +28,8 @@ def update_dependency_versions(dependencies_section):
return return
for package, details in dependencies_section.items(): for package, details in dependencies_section.items():
# Skip if it's an SDK or Git dependency # Skip if it's an SDK, Git, or path dependency
if isinstance(details, dict) and ('sdk' in details or 'git' in details): if any(key in details for key in ['sdk', 'git', 'path']):
continue continue
# Update version if the package exists in lock_versions # 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.
Please register or to comment