Skip to content

Commit 1ad71ae

Browse files
authored
Remove extra slash from pth (#2567)
1 parent 755411a commit 1ad71ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/mlir_aie_wheels/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def run(self):
239239
super().run()
240240
pth_target = os.path.join(self.install_dir, "aie.pth")
241241
with open(pth_target, "w") as pth_file:
242-
pth_file.write("mlir_aie//python")
242+
pth_file.write("mlir_aie/python")
243243

244244

245245
class InstallWithPth(install):
@@ -249,7 +249,7 @@ def run(self):
249249
super().run()
250250
pth_target = os.path.join(self.install_lib, "aie.pth")
251251
with open(pth_target, "w") as pth_file:
252-
pth_file.write("mlir_aie//python")
252+
pth_file.write("mlir_aie/python")
253253

254254

255255
def get_version():

0 commit comments

Comments
 (0)