-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BLD: ignore multiple types of file in wheel #41977
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,18 +17,19 @@ global-exclude *.h5 | |
global-exclude *.html | ||
global-exclude *.json | ||
global-exclude *.jsonl | ||
global-exclude *.msgpack | ||
global-exclude *.pdf | ||
global-exclude *.pickle | ||
global-exclude *.png | ||
global-exclude *.pptx | ||
global-exclude *.pyc | ||
global-exclude *.pyd | ||
global-exclude *.ods | ||
global-exclude *.odt | ||
global-exclude *.orc | ||
global-exclude *.sas7bdat | ||
global-exclude *.sav | ||
global-exclude *.so | ||
global-exclude *.xls | ||
global-exclude *.xlsb | ||
global-exclude *.xlsm | ||
global-exclude *.xlsx | ||
global-exclude *.xpt | ||
|
@@ -39,6 +40,14 @@ global-exclude .DS_Store | |
global-exclude .git* | ||
global-exclude \#* | ||
|
||
global-exclude *.c | ||
global-exclude *.cpp | ||
global-exclude *.h | ||
|
||
global-exclude *.py[codx] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think this should be |
||
global-exclude *.px[di] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and |
||
global-exclude *.pxi.in | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and remove this. will submit a PR once get pip-test and conda-test to pass locally (built from sdist) with these changes |
||
|
||
# GH 39321 | ||
# csv_dir_path fixture checks the existence of the directory | ||
# exclude the whole directory to avoid running related tests in sdist | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to keep the .c and .h for vendored code e.g. parsers etc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
graft pandas/_libs/src
seems to work ok (and need to do the same for np_datetime.c and another couple of files)