Skip to content

Commit

Permalink
Fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
vovaf709 committed Dec 18, 2023
1 parent 1845c8d commit 7fbc824
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ include requirements.txt
include pyproject.toml
include _build_utils.py
recursive-include imops *.py
recursive-include imops/cpp *

This comment has been minimized.

Copy link
@maxme1

maxme1 Dec 18, 2023

Member

won't this accidentally include some garbage like pycache?

2 changes: 1 addition & 1 deletion _build_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def get_ext_modules():
] + [
Extension(
'cpp_modules',
[f'{name}/cpp/src/main.cpp'], # Sort source files for reproducibility
[f'{name}/cpp/src/main.cpp'],
include_dirs=[LazyImport('pybind11')],
extra_compile_args=args + cpp_args,
extra_link_args=args + cpp_args,
Expand Down

0 comments on commit 7fbc824

Please sign in to comment.