Skip to content

Commit b15a9bd

Browse files
Merge pull request #52 from jeromekelleher/fix-build-issue
Update manifest to store headers.
2 parents 3b97851 + 39e1e15 commit b15a9bd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
pip install --user -r python/requirements/development.txt
2121
pip install meson --user
2222
# tmp; until we have an msprime package install from here.
23-
pip install --user --pre --upgrade tskit
23+
# 0.1.0 is broken, so force 0.1.0a1 for now.
24+
pip install --user --pre tskit==0.1.0a1
2425
pip install --user git+https://github.com/tskit-dev/msprime
2526
echo 'export PATH=/home/circleci/.local/bin:$PATH' >> $BASH_ENV
2627
- save_cache:
@@ -60,8 +61,7 @@ jobs:
6061
python setup.py build_ext
6162
python setup.py egg_info
6263
python setup.py bdist_wheel
63-
# TODO This doesn't seem to be installing, fails on bdist_wheel build.
64-
# pip install dist/*.tar.gz
64+
pip install dist/*.tar.gz
6565
- run:
6666
name: Compile C
6767
command: |

python/MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include lib/kastore/c/kastore.h
2+
include lib/tsk*.h
23
include LICENSE
34
include tskit/_version.py

0 commit comments

Comments
 (0)