Skip to content

Commit

Permalink
Move contextvars conditional dependency to install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
duck-rh authored Oct 29, 2020
1 parent b4ce973 commit 4a33d64
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@
license="MIT -or- Apache License 2.0",
packages=find_packages(),
package_data={"sniffio": ["py.typed"]},
install_requires=[],
install_requires=["contextvars >= 2.1; python_version < '3.7'"],
keywords=[
"async",
"trio",
"asyncio",
],
extras_require={":python_version < '3.7'": ["contextvars>=2.1"]},
python_requires=">=3.5",
tests_require=['curio'],
classifiers=[
Expand Down

0 comments on commit 4a33d64

Please sign in to comment.