Skip to content

Commit

Permalink
Remove version caps
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrnr committed Apr 14, 2023
1 parent 3c9796c commit ceae48d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ documentation = "https://wfdb.readthedocs.io/"
license = "MIT"

[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.10.1"
scipy = "^1.0.0"
python = ">=3.7"
numpy = ">=1.10.1"
scipy = ">=1.0.0"
pandas = ">=1.3.0"
SoundFile = ">=0.10.0, <0.12.0"
matplotlib = "^3.2.2"
requests = "^2.8.1"
pytest = {version = "^7.1.1", optional = true}
pytest-xdist = {version = "^2.5.0", optional = true}
pylint = {version = "^2.13.7", optional = true}
black = {version = "^22.3.0", optional = true}
Sphinx = {version = "^4.5.0", optional = true}
SoundFile = ">=0.10.0"
matplotlib = ">=3.2.2"
requests = ">=2.8.1"
pytest = {version = ">=7.1.1", optional = true}
pytest-xdist = {version = ">=2.5.0", optional = true}
pylint = {version = ">=2.13.7", optional = true}
black = {version = ">=22.3.0", optional = true}
Sphinx = {version = ">=4.5.0", optional = true}

[tool.poetry.extras]
dev = ["pytest", "pytest-xdist", "pylint", "black", "Sphinx"]
Expand Down

0 comments on commit ceae48d

Please sign in to comment.