From a70ce194e96f22cea36921d7a5af620f1125e6bc Mon Sep 17 00:00:00 2001 From: elliot-100 <3186037+elliot-100@users.noreply.github.com> Date: Fri, 10 Oct 2025 12:28:43 +0100 Subject: [PATCH] Simplify dependency ranges; bump dev dependencies to latest --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8bcb0a7..13be00f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,13 +8,13 @@ readme = 'README.md' repository = 'https://github.com/Olen/Spond' [tool.poetry.dependencies] -python = "^3.10" -aiohttp = "^3.8.5" +python = ">=3.10" +aiohttp = ">=3.8.5" [tool.poetry.group.dev.dependencies] -pytest = "^8.1.1" -pytest-asyncio = ">=0.23.6,<0.26.0" -ruff = "^0.9.6" +pytest = ">=9.0.2" +pytest-asyncio = ">=1.3.0" +ruff = ">=0.15.0" [tool.ruff] target-version = "py310" # Ruff doesn't yet infer this from [tool.poetry.dependencies]