Skip to content

Commit

Permalink
Do not install C sources with 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#646.
  • Loading branch information
musicinmybrain committed Dec 8, 2021
1 parent 90577d8 commit ef6b5f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES/646.bugfix
@@ -0,0 +1 @@
Do not install C sources with binary distributions.
1 change: 1 addition & 0 deletions setup.py
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 ef6b5f7

Please sign in to comment.