Skip to content

Commit

Permalink
Do not install C sources in binary distributions
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 aio-libs#250.
  • Loading branch information
musicinmybrain committed Dec 7, 2021
1 parent 785697b commit bb3de81
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 bb3de81

Please sign in to comment.