Skip to content

Commit

Permalink
fix: add pyopenssl as extra dependency (#697)
Browse files Browse the repository at this point in the history
* fix: add pyopenssl as extra dependency

* update
  • Loading branch information
arithmetic1728 committed Feb 12, 2021
1 parent c556f6f commit aeab5d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -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()
Expand Down

0 comments on commit aeab5d0

Please sign in to comment.