Skip to content

Commit 2025e84

Browse files
committed
Changed build hook invocation to not rely on hatch.
1 parent 00d3ae6 commit 2025e84

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hatch_run_build_hook.py

Lines changed: 1 addition & 1 deletion
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)

src/python_redlines/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# SPDX-FileCopyrightText: 2024-present U.N. Owen <void@some.where>
22
#
33
# SPDX-License-Identifier: MIT
4-
__version__ = "0.0.3"
4+
__version__ = "0.0.4"

0 commit comments

Comments
 (0)