Skip to content

Commit a59c716

Browse files
committed
Update requirements for numpy 2
This won't work until scikit-allel is numpy 2.0 compatible. See cggh/scikit-allel#415
1 parent 15ed49b commit a59c716

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

_config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ sphinx:
3535
config:
3636
html_theme: sphinx_book_theme
3737
html_theme_options:
38-
pygment_dark_style: monokai
38+
pygments_dark_style: monokai
3939
todo_include_todos: true
4040
intersphinx_mapping:
4141
py: ["https://docs.python.org/3", null]
4242
tskit: ["https://tskit.dev/tskit/docs/stable", null]
43-
tszip: ["https://tszip.readthedocs.io/en/stable/", null]
43+
tszip: ["https://tskit.dev/tszip/docs/latest/", null]
4444
msprime: ["https://tskit.dev/msprime/docs/stable", null]
4545
pyslim: ["https://tskit.dev/pyslim/docs/stable", null]
4646
numpy: ["https://numpy.org/doc/stable/", null]

args.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ difference between some classical ARG formulations, and the ARG formulation
312312
used in `tskit`. Classically, nodes in an ARG are taken to represent _events_
313313
(specifically, "common ancestor", "recombination", and "sampling" events),
314314
and genomic regions of inheritance are encoded by storing a specific breakpoint location on
315-
each recombination node. In contrast, [nodes](tskit:sec_data_model_definitions_node) in a `tskit`
315+
each recombination node. In contrast, {ref}`nodes<tskit:sec_data_model_definitions_node>` in a `tskit`
316316
ARG correspond to _genomes_. More crucially, inherited regions are defined by intervals
317317
stored on *edges* (via the {attr}`~Edge.left` and {attr}`~Edge.right` properties),
318318
rather than on nodes. Here, for example, is the edge table from our ARG:

counting_topologies.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def create_notebook_data():
5151
This tutorial is intended to be a gentle introduction to the combinatorial
5252
treatment of tree topologies in `tskit`. For a more formal introduction,
5353
see the {ref}`sec_combinatorics` section of the
54-
[official `tskit` documentation](tskit:sec_introduction).
54+
official `tskit` {ref}`documentation<tskit:sec_introduction>`.
5555

5656
The *topology* of a single tree is the term used to describe the branching pattern,
5757
regardless of the lengths of the branches. For example, both trees below have the

requirements-CI.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
git+https://github.com/tskit-dev/tsconvert@e99c837e4e26ccbf4f480a4c48626338eeff7dc3
22
demes==0.2.3
33
demesdraw==0.4.0
4-
jupyter-book==0.15.1
4+
jupyter-book==1.0.2
55
jupyter-cache==0.6.1
6-
msprime==1.2.0
7-
networkx==3.1
8-
pandas==2.1.1
9-
pygraphviz==1.10
10-
scikit-allel==1.3.7
6+
msprime==1.3.2
7+
networkx==3.3
8+
pandas==2.2.2
9+
pygraphviz==1.13
10+
scikit-allel==1.3.8
1111
stdpopsim==0.2.0
1212
tqdm==4.66.3
13-
tskit==0.5.5
13+
tskit==0.5.8
1414
tskit_arg_visualizer==0.0.1
15-
tszip==0.2.2
15+
tszip==0.2.4
1616
jsonschema==4.18.6 # Pinned due to 4.19 "AttributeError module jsonschema has no attribute _validators"

0 commit comments

Comments
 (0)