Skip to content

Initial numba module #3225

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/requirements/CI-complete/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ lshmm==0.0.8
msgpack==1.1.0
msprime==1.3.3
networkx==3.2.1
numba==0.61.2
portion==2.6.0
pytest==8.3.5
pytest-cov==6.0.0
Expand Down
3 changes: 2 additions & 1 deletion python/requirements/CI-tests-pip/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ networkx==3.2.1
msgpack==1.1.0
newick==1.10.0
kastore==0.3.3
jsonschema==4.23.0
jsonschema==4.23.0
numba>=0.60.0
2 changes: 1 addition & 1 deletion python/tests/test_balance_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

import tests
import tskit
from tests.test_highlevel import get_example_tree_sequences
from tests.tsutil import get_example_tree_sequences

# ↑ See https://github.com/tskit-dev/tskit/issues/1804 for when
# we can remove this.
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_divmat.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

import tskit
from tests import tsutil
from tests.test_highlevel import get_example_tree_sequences
from tests.tsutil import get_example_tree_sequences

# ↑ See https://github.com/tskit-dev/tskit/issues/1804 for when
# we can remove this.
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_extend_haplotypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import tests.test_wright_fisher as wf
import tskit
from tests import tsutil
from tests.test_highlevel import get_example_tree_sequences
from tests.tsutil import get_example_tree_sequences

# ↑ See https://github.com/tskit-dev/tskit/issues/1804 for when
# we can remove this.
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_genotypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import tests.test_wright_fisher as wf
import tests.tsutil as tsutil
import tskit
from tests.test_highlevel import get_example_tree_sequences
from tests.tsutil import get_example_tree_sequences
from tskit import exceptions
from tskit.genotypes import allele_remap

Expand Down
Loading
Loading