From 7cb31bc6c8bf974827b793efad2caa659fe143e4 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 19 Nov 2019 15:42:15 -0500 Subject: [PATCH] Bump Cython & uvloop deps --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 6bbb6ebf..c34c7565 100644 --- a/setup.py +++ b/setup.py @@ -27,12 +27,12 @@ from setuptools.command import sdist as setuptools_sdist -CYTHON_DEPENDENCY = 'Cython==0.29' +CYTHON_DEPENDENCY = 'Cython==0.29.14' # Minimal dependencies required to test asyncpg. TEST_DEPENDENCIES = [ 'flake8~=3.5.0', - 'uvloop~=0.12.0;platform_system!="Windows"', + 'uvloop~=0.14.0;platform_system!="Windows"', ] # Dependencies required to build documentation.