Skip to content

Commit

Permalink
Do not install C sources with binary distributions (#647)
Browse files Browse the repository at this point in the history
This does not affect source distributions, and Cython sources (.pyx) are
still installed.

Fixes #646.
  • Loading branch information
musicinmybrain committed Dec 11, 2021
1 parent 90577d8 commit 6bd81a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES/646.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Do not install C sources with binary distributions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def read(name):
install_requires=install_requires,
python_requires=">=3.6",
include_package_data=True,
exclude_package_data={"": ["*.c"]},
)


Expand Down

0 comments on commit 6bd81a7

Please sign in to comment.