Skip to content

Commit

Permalink
Add numpy pin for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencrowell committed Jun 4, 2024
1 parent 103e734 commit e1f0282
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ python = "^3.8"
# https://stackoverflow.com/questions/77431252/why-doesnt-poetry-select-the-good-version-of-my-dependency
numpy = [
{version = ">=1.22,<1.25", python = "~3.8"}, # CVE-2021-34141
{version = ">=1.22,^1.25", python = ">=3.9,<3.13" } # CVE-2021-34141
{version = ">=1.22,^1.25", python = ">=3.9,<3.12" }, # CVE-2021-34141
{version = "^1.26", python = ">=3.12,<3.13" }
]
scikit-image = [
# Hinge because minimum support 0.20.0 for py3.11
Expand Down

0 comments on commit e1f0282

Please sign in to comment.