Skip to content

Commit 28caca3

Browse files
committed
rename build script to avoid shadow imports
Signed-off-by: Michele Dolfi <[email protected]>
1 parent a53a3ef commit 28caca3

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include CMakeLists.txt
2-
include build.py
2+
include local_build.py
33
include *.md
44
include uv.lock
55
include LICENSE
File renamed without changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class CustomBuildPy(_build_py):
77
def run(self):
8-
subprocess.check_call([sys.executable, "build.py"])
8+
subprocess.check_call([sys.executable, "local_build.py"])
99
super().run()
1010

1111
class BinaryDistribution(Distribution):

0 commit comments

Comments
 (0)