We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce46874 commit eaf95ffCopy full SHA for eaf95ff
.github/workflows/cygwin.yml
@@ -51,7 +51,7 @@ jobs:
51
bash -c "/usr/bin/python3.8 -m pip install dist/numpy-*cp38*.whl"
52
- name: Rebase NumPy compiled extensions
53
run: |
54
- bash -c "/usr/bin/rebase --database --oblivious $(/bin/dash tools/list_numpy_dlls.sh 3.8)"
+ dash "tools/rebase_installed_dlls_cygwin.sh" 3.8
55
- name: Run NumPy test suite
56
run: >-
57
dash -c "/usr/bin/python3.8 runtests.py -n -vv"
tools/rebase_installed_dlls_cygwin.sh
@@ -0,0 +1,5 @@
1
+#!/bin/dash
2
+# Rebase the dlls installed by NumPy
3
+
4
+py_ver=${1}
5
+/usr/bin/rebase --database --oblivious `/bin/dash tools/list_numpy_dlls.sh ${py_ver}`
0 commit comments