From aeab5d07c5538f3d8cce817df24199534572b97d Mon Sep 17 00:00:00 2001 From: arithmetic1728 <58957152+arithmetic1728@users.noreply.github.com> Date: Fri, 12 Feb 2021 11:57:12 -0800 Subject: [PATCH] fix: add pyopenssl as extra dependency (#697) * fix: add pyopenssl as extra dependency * update --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0df0a81ec..055fcabfd 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,10 @@ "six>=1.9.0", ) -extras = {"aiohttp": "aiohttp >= 3.6.2, < 4.0.0dev; python_version>='3.6'"} +extras = { + "aiohttp": "aiohttp >= 3.6.2, < 4.0.0dev; python_version>='3.6'", + "pyopenssl": "pyopenssl>=20.0.0", +} with io.open("README.rst", "r") as fh: long_description = fh.read()