Skip to content

Commit c7c32d9

Browse files
benjefferyjeromekelleher
authored andcommitted
Update tskit submodule
1 parent 7dfd4a5 commit c7c32d9

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
- Add support and wheels for Python3.13
2525
- Drop Python 3.9 support, require Python >= 3.10 ({pr}`2418`, {user}`benjeffery`)
26+
- Update bundled tskit C API to 1.3.0.
2627

2728
**Breaking changes**:
2829

git-submodules/tskit

Submodule tskit updated 56 files

lib/subprojects/tskit.wrap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[wrap-file]
2-
directory = tskit-1.2.0
2+
directory = tskit-1.3.0
33

4-
source_url = https://github.com/tskit-dev/tskit/releases/download/C_1.2.0/tskit-1.2.0.tar.xz
5-
source_filename = tskit-1.2.0.tar.xz
6-
source_hash = f8f4c341b34df3620404ba8d6c362e3bb7257d48962373c6499871fc2e26b388
4+
source_url = https://github.com/tskit-dev/tskit/releases/download/C_1.3.0/tskit-1.3.0.tar.xz
5+
source_filename = tskit-1.3.0.tar.xz
6+
source_hash = 877e256bad2d5ad81cafd70b0a79c3a44e75840fff389b817700baa6045ead28

lib/tests/test_core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ test_tskit_version(void)
126126
{
127127
/* Make sure we don't have any accidental changes to the tskit submodule. */
128128
CU_ASSERT_EQUAL(TSK_VERSION_MAJOR, 1);
129-
CU_ASSERT_EQUAL(TSK_VERSION_MINOR, 2);
129+
CU_ASSERT_EQUAL(TSK_VERSION_MINOR, 3);
130130
CU_ASSERT_EQUAL(TSK_VERSION_PATCH, 0);
131131
}
132132

tests/test_lowlevel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ def test_gsl_error_handler(self):
440440
def test_tsk_library_version(self):
441441
tsk_version = _msprime.get_tskit_c_version()
442442
# Update this when the tskit C library version changes
443-
assert tsk_version == (1, 2, 0)
443+
assert tsk_version == (1, 3, 0)
444444

445445

446446
def get_random_population_models(n):

0 commit comments

Comments
 (0)