Skip to content

Commit bf4fcd1

Browse files
build: Do not pin numpy to 1.x; allow numpy 2 (#329)
The `numpy` dependency added in 3cef6b7 is SemVer-pinned to 1.x. Allow current `numpy` releases (2.x) as well. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated the version range for the numpy dependency to allow any version from 1.26.4 up to, but not including, 3.0.0. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent f629452 commit bf4fcd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ snakemake-interface-common = "^1.13.0"
1919
snakemake-interface-executor-plugins = "^9.1.1"
2020
snakemake-executor-plugin-slurm-jobstep = "^0.3.0"
2121
pandas = "^2.2.3"
22-
numpy = "^1.26.4"
22+
numpy = ">=1.26.4, <3"
2323
throttler = "^1.2.2"
2424

2525
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)