Skip to content

Commit 7525371

Browse files
Do not install C sources in binary distributions (#251)
This does not affect source distributions, and Cython sources (.pyx) are still installed. Fixes #250.
1 parent c3a51ef commit 7525371

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGES/250.bugfix

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Do not install C sources with binary distributions.

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,5 @@ def read(f):
8787
python_requires='>=3.6',
8888
install_requires=install_requires,
8989
include_package_data=True,
90+
exclude_package_data={"": ["*.c"]},
9091
)

0 commit comments

Comments
 (0)