Skip to content

Commit

Permalink
Fix dependency list syntax in pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
jschaff committed Oct 28, 2024
1 parent 804e9a1 commit aea0ff5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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'",
]


Expand Down

0 comments on commit aea0ff5

Please sign in to comment.