We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1a125f commit 640735dCopy full SHA for 640735d
setup.py
@@ -90,8 +90,10 @@
90
"requests>=2.16.0,<3.0.0",
91
# remove typing_extensions after python_requires>=3.8, see web3._utils.compat
92
"typing-extensions>=3.7.4.1,<4;python_version<'3.8'",
93
- "websockets>=9.1,<10;python_version<'3.8'",
94
- "websockets>=10.0,<11;python_version>'3.7'",
+ # websockets 10.0 removed support for python 3.6.
+ # We can remove this line once we drop 3.6 support as well
95
+ "websockets>=9.1,<10;python_version<'3.7'",
96
+ "websockets>=9.1,<11;python_version>'3.6'",
97
],
98
python_requires='>=3.6,<4',
99
extras_require=extras_require,
0 commit comments