Skip to content

Commit

Permalink
fix list for python3.7 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
skar404 committed Apr 6, 2024
1 parent 30a6d2c commit 757edbc
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,21 @@ packages = [
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
aiohttp = [
{ version = ">=3.8.0", python = ">=3.7,<3.12" },
{ version = ">=3.9.3", python = ">=3.12" }
{ version = ">=3.8.0", python = ">=3.7,<3.8" },
{ version = ">=3.9.3", python = ">3.7" }
]

[tool.poetry.dev-dependencies]
pytest = [
{ version = ">=7.1.3", python = ">=3.7,<3.12" },
{ version = ">=8.1.1", python = ">=3.12" }
{ version = ">=7.1.3", python = ">=3.7,<3.8" },
{ version = ">=8.1.1", python = ">3.7" }
]
pytest-asyncio = ">=0.19.0,<=0.23.6"
pytest-asyncio = [
{ version = ">=0.19.0", python = ">=3.7,<3.8" },
{ version = ">=0.23.6", python = ">3.7" }
]

coverage = "^6.4.4"
mypy = "^0.971"
flake8 = "^5.0.4"
Expand Down

0 comments on commit 757edbc

Please sign in to comment.