Skip to content

Commit

Permalink
Merge pull request #221 from kjsanger/fix/pyproject-deps
Browse files Browse the repository at this point in the history
Add version ranges to pyproject.toml
  • Loading branch information
kjsanger authored Oct 7, 2024
2 parents c93caa0 + 1f338d3 commit 6a469f0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ requires-python = ">=3.10"
dynamic = ["version"]

dependencies = [
"click",
"python-dateutil",
"structlog"
"click >=8.1.7,<9",
"python-dateutil >=2.9.0,<3",
"structlog >=23.3.0"
]

[project.optional-dependencies]
test = [
"black",
"pytest",
"pytest-it"
"black >=24.3.0,<25",
"pytest >=8.0,<9",
"pytest-it >=0.1.5"
]

[project.entry-points.console_scripts]
Expand Down

0 comments on commit 6a469f0

Please sign in to comment.