Skip to content

Commit

Permalink
trying to make Intel mac work... (this didn't do help?)
Browse files Browse the repository at this point in the history
Signed-off-by: Luke Nezda <[email protected]>
  • Loading branch information
nezda committed Dec 29, 2023
1 parent 17277f6 commit 9c57593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class CMakeBuild(build_ext):

@staticmethod
def _is_target_file(file_name: str) -> bool:
if file_name.endswith(".dll") or file_name.endswith(".exe"):
if file_name.endswith(".dll") or file_name.endswith(".exe") or file_name.endswith(".dylib"):
return True
if file_name.endswith(".so") or ".so." in file_name:
return True
Expand Down

0 comments on commit 9c57593

Please sign in to comment.