Skip to content

Commit

Permalink
pin aiohtp to 3.8.6 for python 3.7; use a newer version for python > …
Browse files Browse the repository at this point in the history
…3.7 (#187)
  • Loading branch information
sim0nx authored Apr 22, 2024
1 parent 7cef0b6 commit ef45dd8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@
url="https://github.com/VirusTotal/vt-py",
packages=["vt"],
python_requires=">=3.7.0",
install_requires=["aiohttp==3.8.6"],
install_requires=[
"aiohttp==3.8.6 ; python_version=='3.7'",
"aiohttp ; python_version>'3.7'"
],
setup_requires=["pytest-runner"],
extras_require={"test": ["pytest", "pytest_httpserver", "pytest_asyncio"]},
classifiers=[
Expand Down

0 comments on commit ef45dd8

Please sign in to comment.