Skip to content

Commit 8f45d0e

Browse files
committed
Manifest_update
1 parent 00f0d6b commit 8f45d0e

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ jobs:
137137
CIBW_TEST_REQUIRES: >
138138
numpy
139139
numba
140+
cython
140141
CIBW_TEST_COMMAND: >
141142
cd {project} &&
142143
python -c "import sys; print('Python version:', sys.version); print('sys.path:', sys.path)" &&

MANIFEST.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ include vendor/superlu/lib/*.so.*
2020
include vendor/openblas/lib/*.dylib
2121
include vendor/superlu/lib/*.dylib
2222

23+
include sparse_numba/sparse_umfpack/*.pyd
24+
include sparse_numba/sparse_umfpack/*.so
25+
include sparse_numba/sparse_umfpack/*.dylib
26+
include sparse_numba/sparse_superlu/*.pyd
27+
include sparse_numba/sparse_superlu/*.so
28+
include sparse_numba/sparse_superlu/*.dylib
29+
2330
# Exclude source files from wheel package (keep them in sdist)
2431
exclude sparse_numba/sparse_umfpack/*.c
2532
exclude sparse_numba/sparse_umfpack/*.h

check_extensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def print_separator():
3333
superlu_dir = os.path.join(package_dir, "sparse_superlu")
3434
umfpack_dir = os.path.join(package_dir, "sparse_umfpack")
3535

36-
print("\nSearching for extension modules:")
36+
print(f"\nSearching for extension modules in {superlu_dir} and {umfpack_dir}:")
3737
extensions_found = False
3838

3939
for directory in [superlu_dir, umfpack_dir]:

0 commit comments

Comments
 (0)