From aea0ff5f4aed8286f1f1a2fb62f7df0ccea0195d Mon Sep 17 00:00:00 2001 From: jschaff Date: Mon, 28 Oct 2024 12:20:51 -0700 Subject: [PATCH] Fix dependency list syntax in pyproject --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c659f55..8a925ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,9 +70,9 @@ caching = [ ] tests = [ "pytest>=8.3.3; python_version>='3.8'", - "pytest>=7.4.4; python_version=='3.7'" - "pytest-asyncio>=0.23.8; python_version>='3.8'" - "pytest-asyncio>=0.21.2; python_version=='3.7'" + "pytest>=7.4.4; python_version=='3.7'", + "pytest-asyncio>=0.23.8; python_version>='3.8'", + "pytest-asyncio>=0.21.2; python_version=='3.7'", ]