Skip to content

Commit

Permalink
Do not install C sources in binary distributions (#251)
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 #250.
  • Loading branch information
musicinmybrain authored Dec 7, 2021
1 parent c3a51ef commit 7525371
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES/250.bugfix
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 @@ -87,4 +87,5 @@ def read(f):
python_requires='>=3.6',
install_requires=install_requires,
include_package_data=True,
exclude_package_data={"": ["*.c"]},
)

0 comments on commit 7525371

Please sign in to comment.