Skip to content

Commit

Permalink
Do not verify package version on ignored packages (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
Timple authored Feb 4, 2021
1 parent 83eafd9 commit acb0d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bloom/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ def get_package_data(branch_name=None, directory=None, quiet=True, release_direc
else:
log("found '" + list(packages.values())[0].name + "'.",
use_prefix=False)
version = verify_equal_package_versions(packages.values())
ignored_packages = get_ignored_packages(release_directory=release_directory)
for k, v in dict(packages).items():
# Check for packages with upper case names
Expand All @@ -106,6 +105,7 @@ def get_package_data(branch_name=None, directory=None, quiet=True, release_direc
if packages == {}:
error("All packages that were found were also ignored, aborting.",
exit=True)
version = verify_equal_package_versions(packages.values())
return [p.name for p in packages.values()], version, packages
# Otherwise we have a problem
log("failed.", use_prefix=False)
Expand Down

0 comments on commit acb0d53

Please sign in to comment.