77
88import sys
99
10- if sys .version_info < (3 , 6 ):
11- raise RuntimeError ('asyncpg requires Python 3.6 or greater' )
10+ if sys .version_info < (3 , 7 ):
11+ raise RuntimeError ('asyncpg requires Python 3.7 or greater' )
1212
1313import os
1414import os .path
3030# Minimal dependencies required to test asyncpg.
3131TEST_DEPENDENCIES = [
3232 'flake8~=5.0.4' ,
33- 'uvloop>=0.15.3; platform_system != "Windows" and python_version >= "3.7" ' ,
33+ 'uvloop>=0.15.3; platform_system != "Windows"' ,
3434]
3535
3636# Dependencies required to build documentation.
@@ -255,7 +255,6 @@ def finalize_options(self):
255255 'Operating System :: MacOS :: MacOS X' ,
256256 'Operating System :: Microsoft :: Windows' ,
257257 'Programming Language :: Python :: 3 :: Only' ,
258- 'Programming Language :: Python :: 3.6' ,
259258 'Programming Language :: Python :: 3.7' ,
260259 'Programming Language :: Python :: 3.8' ,
261260 'Programming Language :: Python :: 3.9' ,
@@ -264,7 +263,7 @@ def finalize_options(self):
264263 'Topic :: Database :: Front-Ends' ,
265264 ],
266265 platforms = ['macOS' , 'POSIX' , 'Windows' ],
267- python_requires = '>=3.6 .0' ,
266+ python_requires = '>=3.7 .0' ,
268267 zip_safe = False ,
269268 author = 'MagicStack Inc' ,
270269 author_email = 'hello@magic.io' ,
0 commit comments