From 193e7cfcf72f394597a05ca364c30c86ddd10723 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 14 Apr 2024 07:50:25 -0600 Subject: [PATCH] Add py version to dependencies This seems to need a later version than is present on my system, without which 'tox -r' fails. Add an explicit dependency for version 1.11 which I believe is the minimum version with the py.io feature. Fixes #1361 Signed-off-by: Simon Glass --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 0c1c590ee..9ff2a9292 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -118,6 +118,7 @@ dev = [ # additional dev dependencies "psutil>=5.8.0", + "py>=1.11", "pytest-cov>=3.0.0", "pytest-dependency>=0.5.1", "pytest-isort>=2.0.0",