Skip to content

Commit

Permalink
use specific numpy+scipy versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dromer committed Sep 26, 2024
1 parent f5103f0 commit d2ec690
Show file tree
Hide file tree
Showing 3 changed files with 136 additions and 32 deletions.
152 changes: 124 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,14 @@ wstd2daisy = ">=0.5.3"
pydantic = ">=2.9.1"

[tool.poetry.group.dev.dependencies]
numpy = "^1.24.1"
scipy = "^1.9.1"
numpy = [
{ version = "^2.0.1", python = "^3.9" },
{ version = "^1.24.3", python = "==3.8"}
]
scipy = [
{ version = "^1.13.1", python = "^3.9"},
{ version = "^1.9.1", python = "==3.8"}
]
pytest-cov = "^5.0.0"
flake8 = "^7.1.1"
mypy = "^1.11.2"
Expand Down
Loading

0 comments on commit d2ec690

Please sign in to comment.