8000 CI: Exclude import libraries from list of DLLs on Cygwin. by charris · Pull Request #24590 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

CI: Exclude import libraries from list of DLLs on Cygwin. #24590

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 1 commit into from
Aug 30, 2023
Merged
Changes from all commits
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
CI: Exclude import libraries from list of DLLs on Cygwin.
There are import libraries in numpy.random that are intended for distribution.   This script should not include those, only actual DLLs.
  • Loading branch information
DWesl authored and charris committed Aug 30, 2023
commit 1a0073c9b36449e29b78fdb30a24547f72845930
2 changes: 1 addition & 1 deletion tools/list_numpy_dlls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ py_ver=${1}
site_packages=`python${py_ver} -m pip show numpy | \
grep Location | cut -d " " -f 2 -`;
dll_list=`for name in $(python${py_ver} -m pip show -f numpy | \
grep -F .dll); do echo ${site_packages}/${name}; done`
grep -E -e '\.dll$'); do echo ${site_packages}/${name}; done`
echo ${dll_list}
0