From ba20deac6dd44017f1fa80371ccf33fdea671f83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Davide=20Col=C3=AC?= Date: Wed, 19 Nov 2025 16:37:25 +0100 Subject: [PATCH] Pin dependency versions in pyproject.toml for consistent environments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR updates pyproject.toml to use exact versions for several dependencies instead of minimum versions. The following dependencies are now pinned to specific versions: - black: 25.11.0 - flake8-docstrings: 1.7.0 - ipykernel: 7.1.0 - isort: 7.0.0 Signed-off-by: Davide Colì --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c044d74..5f639c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,12 +13,12 @@ authors = [ readme = "README.md" requires-python = ">=3.10" dependencies = [ - "black>=25.1.0", + "black==25.11.0", "exceptiongroup>=1.2.2", - "flake8-docstrings>=1.7.0", + "flake8-docstrings==1.7.0", "GitPython>=3.1.43", - "ipykernel>=6.29.5", - "isort>=6.0.1", + "ipykernel==7.1.0", + "isort==7.0.0", "tokenize-rt>=6.0.0", "toml>=0.10.2", "tomli>=2.0.1",