From fd335f2d597208e95bc86732cf93edbc8fa379ef Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Wed, 5 Sep 2018 10:16:01 +0300 Subject: [PATCH] Bump to 3.4.4 --- CHANGES.rst | 5 +++++ aiohttp/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 36e1ecb8ec1..46a4d914d3b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,11 @@ Changelog .. towncrier release notes start +3.4.4 (2018-09-05) +================== + +- Fix installation from sources when compiling toolkit is not available (`#3241 `_) + 3.4.3 (2018-09-04) ================== diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 3eb284423fd..c462dc7a8a6 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.4.3' +__version__ = '3.4.4' # This relies on each of the submodules having an __all__ variable. diff --git a/setup.py b/setup.py index a7262ee6585..ce23fc10a54 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run(self): def build_extension(self, ext): try: build_ext.build_extension(self, ext) - except (DistutilsExecError, + except (CCompilerError, DistutilsExecError, DistutilsPlatformError, ValueError): raise BuildFailed()