Skip to content

Commit b29821d

Browse files
authored
Remove explicit setup.py pass to verify dependencies present (#42636)
1 parent 9ac0d09 commit b29821d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/devops_tasks/verify_dependencies_present.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
args = parser.parse_args()
2626

2727
package_name = args.package_name.replace("_", "-")
28-
path_to_setup = os.path.join(root_dir, "sdk", args.service, package_name, "setup.py")
28+
path_to_setup = os.path.join(root_dir, "sdk", args.service, package_name)
2929

3030
missing_packages = find_packages_missing_on_pypi(path_to_setup)
3131

0 commit comments

Comments
 (0)