8000 MNT: use pythoncapi_compat.h in npy_compat.h by ngoldbaum · Pull Request #26189 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

MNT: use pythoncapi_compat.h in npy_compat.h #26189

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

Merged
merged 5 commits into from
Apr 3, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
MNT: skip pythoncapi-comat in check_installed_files
  • Loading branch information
ngoldbaum committed Apr 1, 2024
commit c74a960af165b55c6dd7986e45435bc2cd296ded
5 changes: 5 additions & 0 deletions tools/check_installed_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ def get_files(dir_to_check, kind='test'):
k: v for k, v in files.items() if not k.startswith('distutils')
}

# ignore python files in vendored pythoncapi-compat submodule
files = {
k: v for k, v in files.items() if 'pythoncapi-compat' not in k
}

return files


Expand Down
0