-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #936 from benjeffery/numpy2
Upgrade actions, build with numpy2
- Loading branch information
Showing
14 changed files
with
167 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
PYTHON_VERSIONS=( | ||
cp312-cp312 | ||
cp311-cp311 | ||
cp310-cp310 | ||
cp39-cp39 | ||
cp38-cp38 | ||
cp37-cp37m | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,79 @@ requires = [ | |
"setuptools>=42", | ||
"setuptools_scm", | ||
"wheel", | ||
"oldest-supported-numpy" | ||
"numpy>=2" | ||
] | ||
|
||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
write_to = "tsinfer/_version.py" | ||
write_to = "tsinfer/_version.py" | ||
|
||
[project] | ||
name = "tsinfer" | ||
dynamic = ["version"] | ||
authors = [ | ||
{name = "Tskit Developers", email = "[email protected]"}, | ||
] | ||
description = "Infer tree sequences from genetic variation data." | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
license = {text = "GNU GPLv3+"} | ||
classifiers = [ | ||
"Programming Language :: C", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Development Status :: 3 - Alpha", | ||
"Environment :: Other Environment", | ||
"Intended Audience :: Science/Research", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
keywords = [ | ||
"population genetics", | ||
"tree sequence", | ||
"ancestral recombination graph", | ||
"evolutionary tree", | ||
"inference", | ||
"tsinfer", | ||
] | ||
dependencies = [ | ||
"numpy>=1.23.5", | ||
"six", | ||
"tqdm", | ||
"humanize", | ||
"daiquiri", | ||
"tskit>=0.5.3", | ||
"numcodecs>=0.6", | ||
"zarr>=2.2,!=2.11.0,!=2.11.1,!=2.11.2,<3", | ||
"lmdb", | ||
"sortedcontainers", | ||
"attrs>=19.2.0", | ||
"dask[array]", | ||
"numba", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://tskit.dev/tsinfer" | ||
Documentation = "https://tskit.dev/tsinfer/docs/stable" | ||
Changelog = "https://tskit.dev/tsinfer/docs/stable/CHANGELOG.html" | ||
"Bug Tracker" = "https://github.com/tskit-dev/tsinfer/issues" | ||
"Source Code" = "https://github.com/tskit-dev/tsinfer/" | ||
|
||
[project.scripts] | ||
tsinfer = "tsinfer.__main__:main" | ||
|
||
[tool.setuptools] | ||
packages = ["tsinfer"] | ||
include-package-data = true | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["tests"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
jupyter-book==0.15.1 | ||
sphinx-issues==3.0.1 | ||
jupyter-book==1.0.2 | ||
sphinx-issues==4.1.0 | ||
sphinx-argparse==0.4.0 | ||
humanize==4.7.0 | ||
lmdb==1.4.1 | ||
tqdm==4.65.0 | ||
daiquiri==3.2.1 | ||
msprime==1.2.0 | ||
sgkit[vcf]==0.7.0 | ||
ipywidgets==8.1.0 | ||
humanize==4.10.0 | ||
lmdb==1.5.1 | ||
tqdm==4.66.4 | ||
daiquiri==3.2.5.1 | ||
msprime==1.3.2 | ||
sgkit[vcf]==0.9.0 | ||
ipywidgets==8.1.3 | ||
sphinx-book-theme #Unpinned to allow easy updating. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
build==1.2.1 | ||
colorama==0.4.6 | ||
daiquiri==3.0.0 | ||
humanize==4.9.0 | ||
lmdb==1.4.1 | ||
matplotlib==3.8.4 | ||
meson==1.4.0 | ||
msprime==1.3.1 | ||
pytest==8.2.0 | ||
daiquiri==3.2.5.1 | ||
humanize==4.10.0 | ||
lmdb==1.5.1 | ||
matplotlib==3.9.1 | ||
meson==1.5.0 | ||
msprime==1.3.2 | ||
pytest==8.2.2 | ||
pytest-cov==5.0.0 | ||
seaborn==0.13.2 | ||
sgkit[vcf]==0.8.0 | ||
sgkit[vcf]==0.9.0 | ||
tskit==0.5.8 | ||
tqdm==4.66.4 | ||
twine==5.0.0 | ||
twine==5.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
pytest==8.2.0 | ||
msprime==1.3.1 | ||
humanize==4.9.0 | ||
python-lmdb==1.3.0 | ||
pytest==8.2.2 | ||
msprime==1.3.2 | ||
humanize==4.10.0 | ||
python-lmdb==1.4.1 | ||
tqdm==4.66.4 | ||
daiquiri==3.0.0 | ||
sgkit[vcf]==0.8.0 | ||
matplotlib==3.8.4 | ||
matplotlib==3.9.1 | ||
seaborn==0.13.2 | ||
colorama==0.4.6 | ||
tskit==0.5.8 |
Oops, something went wrong.