From 84d7d396f44594e7814ef67c449e5290e2009848 Mon Sep 17 00:00:00 2001 From: Jacob Strieb Date: Sat, 2 Nov 2024 23:15:21 -0400 Subject: [PATCH] Better version pinning --- pyproject.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 33de7a2..cff1038 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,14 +63,14 @@ dynamic = ["version"] # latest ones that support Python 3.7. test = [ # Linting - "black >= 23.3.0", - "mypy >= 1.4.1", - "ruff >= 0.1.8", + "black ~= 23.3.0", + "mypy ~= 1.4.1", + "ruff ~= 0.1.8", # Testing - "pytest >= 7.4.3", - "coverage[toml] >= 6.5.0", - "pytest-cov >= 4.1.0", - "pytest-xdist >= 3.5.0", + "pytest ~= 7.4.3", + "coverage[toml] ~= 6.5.0", + "pytest-cov ~= 4.1.0", + "pytest-xdist ~= 3.5.0", ] [project.urls]