Skip to content

Commit

Permalink
fix NumPy conflict with PEP 517
Browse files Browse the repository at this point in the history
  • Loading branch information
falkoschindler committed Sep 6, 2024
1 parent d9b699e commit 1f4930f
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 5 deletions.
56 changes: 52 additions & 4 deletions poetry.lock

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

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ itsdangerous = "^2.1.2" # required by SessionMiddleware (see https://fastapi.tia
pandas = "^2.0.0"
secure = ">=0.3.0"
webdriver-manager = ">=3.8.6,<5.0.0"
numpy = ">=1.24.0"
numpy = [
{version = "^1.24.0", python = "~3.8"},
{version = ">=1.26.0", python = ">=3.9,<3.13"}
]
selenium = "^4.11.2"
pyecharts = "^2.0.4"
ruff = ">=0.3.5"
Expand Down

0 comments on commit 1f4930f

Please sign in to comment.