Skip to content

Commit

Permalink
Fix walnus issue (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli authored Jun 16, 2022
1 parent e358dbe commit 3694635
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions builder/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,8 @@ def builder(
run_auditwheel(wheels_dir)

# Check if all wheels are on our min requirements
if (
package_wrong := fix_wheels_unmatch_requirements(wheels_dir)
and exit_code == 0
):
package_wrong = fix_wheels_unmatch_requirements(wheels_dir)
if package_wrong and exit_code == 0:
for package, version in package_wrong.items():
build_wheels_package(
f"{package}=={str(version)}",
Expand Down

0 comments on commit 3694635

Please sign in to comment.