@@ -18,7 +18,6 @@ classifiers = [
1818 " Intended Audience :: Developers" ,
1919 " License :: OSI Approved :: MIT License" ,
2020 " Programming Language :: Python :: 3" ,
21- " Programming Language :: Python :: 3.6" ,
2221 " Programming Language :: Python :: 3.7" ,
2322 " Programming Language :: Python :: 3.8" ,
2423 " Programming Language :: Python :: 3.9" ,
@@ -43,47 +42,30 @@ packages = [
4342]
4443
4544[tool .poetry .dependencies ]
46- python = " ^3.6 "
45+ python = " ^3.7 "
4746typing-extensions = [
48- { version = " ^4.3" , python = " >=3.7,<3.8" },
49- { version = " ^4.1" , python = " <3.7" }
47+ { version = " ^4.3" , python = " <3.8" },
5048]
5149
5250[tool .poetry .dev-dependencies ]
53- pytest = " ^6.2"
54- pytest-asyncio = [
55- {version =" >=0.19,<1" , python = " >=3.7" },
56- {version =" >=0.16,<0.17" , python = " <3.7" },
57- ]
51+ pytest = " ^7.1"
52+ pytest-asyncio = " >=0.19,<1"
5853pytest-benchmark = " ^3.4"
5954pytest-cov = " ^3.0"
6055pytest-describe = " ^2.0"
6156pytest-timeout = " ^2.1"
62- black = [
63- {version = " 22.8.0" , python = " >=3.6.2" },
64- {version = " 20.8b1" , python = " <3.6.2" }
65- ]
66- flake8 = [
67- {version = " ^5.0" , python = " >=3.6.1" },
68- {version = " ^4.0" , python = " <3.6.1" }
69- ]
57+ black = " 22.8.0"
58+ flake8 = " ^5.0"
7059mypy = " 0.971"
71- sphinx = " ^4.3 "
60+ sphinx = " ^5.1 "
7261sphinx_rtd_theme = " >=1,<2"
7362check-manifest = " >=0.48,<1"
7463bump2version = " >=1.0,<2"
75- tomli = [
76- {version =" ^2" , python = " >=3.7" },
77- {version =" ^1.2" , python = " <3.7" }
78- ]
79- tox = [
80- {version = " ^3.26" , python = " >=3.7" },
81- {version = " 3.25" , python = " <3.7" }
82- ]
64+ tox = " ^3.26"
8365
8466[tool .black ]
85- target-version = [' py36 ' , ' py37' , ' py38' , ' py39' , ' py310' ]
67+ target-version = [' py37' , ' py38' , ' py39' , ' py310' ]
8668
8769[build-system ]
88- requires = [" poetry_core>=1,<2" , " setuptools>=59 ,<70" ]
70+ requires = [" poetry_core>=1,<2" , " setuptools>=65 ,<70" ]
8971build-backend = " poetry.core.masonry.api"
0 commit comments