Skip to content

Commit

Permalink
loosen dependency requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
xoolive committed Aug 22, 2023
1 parent 070dc80 commit b6608b2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ modeslive = "pyModeS.streamer.modeslive:main"

[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.24"
pyzmq = "^24.0"
pyrtlsdr = {version = "^0.2.93", optional = true}
numpy = ">=1.24"
pyzmq = ">=24.0"
pyrtlsdr = {version = ">=0.2.93", optional = true}

[tool.poetry.group.dev.dependencies]
mypy = "^0.991"
flake8 = "^5.0.0"
black = "^22.12.0"
isort = "^5.11.4"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
codecov = "^2.1.12"
mypy = ">=0.991"
flake8 = ">=5.0.0"
black = ">=22.12.0"
isort = ">=5.11.4"
pytest = ">=7.2.0"
pytest-cov = ">=4.0.0"
codecov = ">=2.1.12"

[tool.poetry.extras]
rtlsdr = ["pyrtlsdr"]
Expand Down

0 comments on commit b6608b2

Please sign in to comment.