From a4a039c6ed8b6bea7e2043df313bfd533c854568 Mon Sep 17 00:00:00 2001 From: David Wales Date: Wed, 18 Sep 2024 15:02:19 +1000 Subject: [PATCH] Use compatible version constraints in pyproject.toml See: https://python-poetry.org/docs/dependency-specification/#caret-requirements --- pyproject.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 714adcd..cdbe435 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]