diff --git a/pyproject.toml b/pyproject.toml index 1534ad4..a53efc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,9 +14,10 @@ classifiers = [ "Natural Language :: English", "Intended Audience :: Developers", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules" ] @@ -32,8 +33,8 @@ bump = true files = ["*.py", "*/__init__.py", "*/__version__.py", "*/version.py"] [tool.poetry.dependencies] -python = "^3.7" -aiohttp = "^3.7.4" +python = "^3.10" +aiohttp = "^3.9.0" requests = "^2.25.1" python-dotenv = "^0.15.0" dataclasses-json = "^0.5.3" @@ -41,11 +42,11 @@ fuuid = "^0.1.0" poetry-dynamic-versioning = "^0.13.0" [tool.poetry.dev-dependencies] -pytest = ">=5.0" +pytest = "^7.0.0" pytest-cov = "^2.11.1" pytest-mock = "^3.6.1" -black = "^20.8b1" -flake8 = "^3.8.4" +black = "^22.0.0" +flake8 = "^6.0.0" Sphinx = "^3.5.2" tox = "^3.23.0" coverage = "^5.5" @@ -57,7 +58,7 @@ responses = "^0.13.3" [tool.black] line-length = 100 -target-verstion = ["py37"] +target-version = ["py310"] safe = true [tool.isort]