Skip to content

Commit

Permalink
Switch back to build when not building a wheelhouse
Browse files Browse the repository at this point in the history
  • Loading branch information
PProfizi committed Sep 20, 2023
1 parent d9bf7e0 commit bc6c39d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .ci/build_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@
moved.append([dst, src])

# Call the build
cmd = [sys.executable, "-m", "pip", "wheel", "-w", "dist"]
if not args.wheelhouse:
cmd.append("--no-deps")
cmd.append(".[plotting]")
cmd = [sys.executable, "-m", "build", "--wheel"]
else:
cmd = [sys.executable, "-m", "pip", "wheel", "-w", "dist", ".[plotting]"]
try:
subprocess.run(cmd, capture_output=False, text=True)
print("Done building the wheel.")
Expand Down

0 comments on commit bc6c39d

Please sign in to comment.