Skip to content

Commit 6aa8a32

Browse files
committed
make automated source distribution work (and test if it works on GA)
1 parent db43497 commit 6aa8a32

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161

6262
- run: pytest -v -s -We -p no:unraisableexception tests
6363

64+
- run: python -m build
65+
6466
# - if: ${{ failure() }}
6567
# uses: mxschmitt/action-tmate@v3
6668
# with:

MANIFEST.in

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
exclude examples
2+
graft gitmodules/partmc/src/
3+
graft gitmodules/sundials/src/sunnonlinsol/newton/
4+
graft gitmodules/sundials/src/sunnonlinsol/fixedpoint/
5+
graft gitmodules/sundials/src/nvector/serial/
6+
graft gitmodules/sundials/src/sunlinsol/band/
7+
graft gitmodules/sundials/src/sunlinsol/dense/
8+
graft gitmodules/sundials/src/cvode/
9+
graft gitmodules/sundials/src/sundials/
10+
graft gitmodules/sundials/include/sundials/
11+
include gitmodules/sundials/cmake/SundialsSetupConfig.cmake
12+
include gitmodules/sundials/cmake/SundialsSetupCompilers.cmake
13+
include gitmodules/sundials/cmake/SundialsIndexSize.cmake
14+
include gitmodules/sundials/src/sunmatrix/CMakeLists.txt
15+
include gitmodules/sundials/src/sunmatrix/band/CMakeLists.txt
16+
include gitmodules/sundials/src/sunmatrix/dense/CMakeLists.txt
17+
include gitmodules/sundials/src/sunmatrix/sparse/CMakeLists.txt
18+
include gitmodules/sundials/src/sunlinsol/CMakeLists.txt
19+
include gitmodules/sundials/src/sunlinsol/band/CMakeLists.txt
20+
include gitmodules/sundials/src/sunlinsol/dense/CMakeLists.txt
21+
include gitmodules/sundials/src/sunlinsol/pcg/CMakeLists.txt
22+
include gitmodules/sundials/src/sunlinsol/spbcgs/CMakeLists.txt
23+
include gitmodules/sundials/src/sunlinsol/spfgmr/CMakeLists.txt
24+
include gitmodules/sundials/src/sunlinsol/spgmr/CMakeLists.txt
25+
include gitmodules/sundials/src/sunlinsol/sptfqmr/CMakeLists.txt
26+
include gitmodules/sundials/src/sunnonlinsol/CMakeLists.txt
27+
include gitmodules/sundials/src/nvector/CMakeLists.txt
28+
include gitmodules/sundials/src/sunmatrix/band/sunmatrix_band.c
29+
include gitmodules/sundials/src/sunmatrix/dense/sunmatrix_dense.c
30+
include gitmodules/sundials/src/sunmatrix/sparse/sunmatrix_sparse.c
31+
include gitmodules/sundials/src/sunmatrix/band/sunmatrix_band.c
32+
include gitmodules/sundials/src/sunmatrix/dense/sunmatrix_dense.c
33+
include gitmodules/sundials/src/sunlinsol/pcg/sunlinsol_pcg.c
34+
include gitmodules/sundials/src/sunlinsol/spbcgs/sunlinsol_spbcgs.c
35+
include gitmodules/sundials/src/sunlinsol/spfgmr/sunlinsol_spfgmr.c
36+
include gitmodules/sundials/src/sunlinsol/spgmr/sunlinsol_spgmr.c
37+
include gitmodules/sundials/src/sunlinsol/sptfqmr/sunlinsol_sptfqmr.c
38+
include gitmodules/sundials/sundials_nvector_senswrapper.h
39+
40+
include gitmodules/pybind11/CMakeLists.txt
41+
include gitmodules/pybind11/tools/pybind11Common.cmake
42+
include gitmodules/pybind11/tools/pybind11Tools.cmake
43+
include gitmodules/pybind11/tools/FindPythonLibsNew.cmake
44+
graft gitmodules/pybind11/include/pybind11/
45+
46+
graft gitmodules/json/include/nlohmann/
47+
include gitmodules/span/include/tcb/span.hpp
48+
include gitmodules/pybind11_json/include/pybind11_json/pybind11_json.hpp
49+
50+
include gitmodules/partmc/src/condense_solver.c

0 commit comments

Comments
 (0)