Skip to content

Commit

Permalink
Update library dependencies
Browse files Browse the repository at this point in the history
Daffy 0.6.0 conflicts currently with pandas >=2.0.0 versions since it depends on pandas (>=1.5.1,<2.0.0)
  • Loading branch information
MatiasTiainen committed Dec 4, 2023
1 parent f8bb8e1 commit 670d40c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@ include = [
]

[tool.poetry.dependencies]
python = ">=3.8,<4.0.0"
pandas = "^1.5.1"
python = ">=3.8.1,<4.0.0"
pandas = ">=1.5.1,<3.0.0"

[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
isort = "^5.10.1"
black = "^22.10.0"
flake8 = "^5.0.4"
pre-commit = "^2.20.0"
mypy = "^0.982"
pytest-mock = "^3.10.0"
pytest-cov = "^4.0.0"
coverage = {extras = ["toml"], version = "^6.5.0"}
pydocstyle = "^6.1.1"
pytest = "^7.4.3"
isort = "^5.12.0"
black = "^23.11.0"
flake8 = "^6.1.0"
pre-commit = "^3.5.0"
mypy = "^1.7.1"
pytest-mock = "^3.12.0"
pytest-cov = "^4.1.0"
coverage = {extras = ["toml"], version = "^7.3.2"}
pydocstyle = "^6.3.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 670d40c

Please sign in to comment.