Skip to content

Commit

Permalink
Use compatible version constraints in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
daviewales committed Sep 18, 2024
1 parent 494d637 commit a4a039c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ authors = [
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8"
rich = ">=13.7.0"
playwright = ">=1.40.0"
python = "^3.8"
rich = "^13.7.0"
playwright = "^1.40.0"

[tool.poetry.group.docs.dependencies]
sphinx = ">=7.0.0"
myst-parser = ">=2.0.0"
sphinx-autoapi = ">=3.0.0"
sphinx-rtd-theme = ">=2.0.0"
sphinx = "^7.0.0"
myst-parser = "^2.0.0"
sphinx-autoapi = "^3.0.0"
sphinx-rtd-theme = "^2.0.0"

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

0 comments on commit a4a039c

Please sign in to comment.