7
7
8
8
import sys
9
9
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' )
12
12
13
13
import os
14
14
import os .path
30
30
# Minimal dependencies required to test asyncpg.
31
31
TEST_DEPENDENCIES = [
32
32
'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"' ,
34
34
]
35
35
36
36
# Dependencies required to build documentation.
@@ -255,7 +255,6 @@ def finalize_options(self):
255
255
'Operating System :: MacOS :: MacOS X' ,
256
256
'Operating System :: Microsoft :: Windows' ,
257
257
'Programming Language :: Python :: 3 :: Only' ,
258
- 'Programming Language :: Python :: 3.6' ,
259
258
'Programming Language :: Python :: 3.7' ,
260
259
'Programming Language :: Python :: 3.8' ,
261
260
'Programming Language :: Python :: 3.9' ,
@@ -264,7 +263,7 @@ def finalize_options(self):
264
263
'Topic :: Database :: Front-Ends' ,
265
264
],
266
265
platforms = ['macOS' , 'POSIX' , 'Windows' ],
267
- python_requires = '>=3.6 .0' ,
266
+ python_requires = '>=3.7 .0' ,
268
267
zip_safe = False ,
269
268
author = 'MagicStack Inc' ,
270
269
0 commit comments