Skip to content

Commit

Permalink
Use flexible dependencies to numpy and pandas (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
lboucin authored Jan 24, 2023
1 parent 87062f9 commit 949f65d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ packages = [
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
importlib-metadata = {version = "^4.0", python = "<3.8"}
numpy = "1.23.4"
pandas = "1.5.1"
numpy = ">=1.14"
pandas = ">=1.3.2"
pywin32 = {version = ">=304", markers = "platform_system == 'Windows'"}

[tool.poetry.group.test.dependencies]
numpy = "1.23.4"
pandas = "1.5.1"
pytest = "7.1.2"
pytest-cov = "^4.0.0"

Expand Down

0 comments on commit 949f65d

Please sign in to comment.