Skip to content

Commit

Permalink
fix(numpy): update numpy minimal and maximal versions (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarreau authored Feb 3, 2025
1 parent 3c408f9 commit 5aba28f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions src/agent_toolkit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ marshmallow-jsonapi = ">=0.24.0, <1.0"
marshmallow = "<3.24.0"
sseclient-py = "^1.5"
forestadmin-datasource-toolkit = "1.22.4"

[[tool.poetry.dependencies.pandas]]
version = ">=1.4.0"
python = "<3.13.0"
Expand All @@ -34,12 +35,12 @@ version = ">=2.2.3"
python = ">=3.13.0"

[[tool.poetry.dependencies.numpy]]
version = ">=1.26.0,<2.0.0"
python = ">=3.12.0"
python = ">=3.8.0,<3.12"
version = ">=1.24.0"

[[tool.poetry.dependencies.numpy]]
version = "<2.0.0"
python = "<3.12.0"
python = ">=3.13"
version = ">=1.3.0"

[tool.poetry.dependencies."backports.zoneinfo"]
version = "~0.2.1"
Expand Down
9 changes: 5 additions & 4 deletions src/datasource_toolkit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@ include = "forestadmin"
python = ">=3.8,<3.14"
typing-extensions = "~=4.2"
filetype = "^1.0.0"

[[tool.poetry.dependencies.numpy]]
version = ">=1.26.0,<2.0.0"
python = ">=3.12.0"
python = ">=3.8.0,<3.12"
version = ">=1.24.0"

[[tool.poetry.dependencies.numpy]]
version = "<2.0.0"
python = "<3.12.0"
python = ">=3.13"
version = ">=1.3.0"

[[tool.poetry.dependencies.pandas]]
version = ">=1.4.0"
Expand Down

0 comments on commit 5aba28f

Please sign in to comment.