Skip to content

Commit

Permalink
Merge pull request #8 from racosta/master
Browse files Browse the repository at this point in the history
Relax dependency requirements for click
  • Loading branch information
TheCleric authored Mar 1, 2024
2 parents 3523932 + be9ab71 commit 06d9837
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ strict_equality = true

[tool.poetry]
name = "coverage-lcov"
version = "0.2.4"
version = "0.2.5"
description = "A simple .coverage to LCOV converter"
authors = [
"Adam Weeden <adamweeden@gmail.com>",
Expand All @@ -55,16 +55,16 @@ coverage-lcov = "coverage_lcov.cli:main"

[tool.poetry.dependencies]
python = "^3.6.3"
coverage = { extras = ["toml"], version = "^5.5" }
click = "^7.1.2"
coverage = { extras = ["toml"], version = ">=5.5" }
click = ">=7.1.2"
types-toml = "^0.1.5"

[tool.poetry.dev-dependencies]
black = "^21.5b0"
isort = "^5.8.0"
mypy = "^0.910"
pytest = "^5.2"
types-click = "^7.1.5"
types-click = ">=7.1.5"
pylint = "^2.10.2"

[build-system]
Expand Down

0 comments on commit 06d9837

Please sign in to comment.