Skip to content

Commit a834070

Browse files
committed
Drop dependency on hatch from build hook (again... lost this in the PR earlier).
1 parent 91c945f commit a834070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hatch_run_build_hook.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ class HatchRunBuildHook(BuildHookInterface):
66

77
def initialize(self, version, build_data):
88
# Run the 'hatch run build' command
9-
subprocess.run(['hatch', 'run', 'build'], check=True)
9+
subprocess.run(["python", "-m", "build_differ"], check=True)

0 commit comments

Comments
 (0)