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 31df807 commit 9723ce8Copy full SHA for 9723ce8
setup.py
@@ -90,7 +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,<5;python_version<'3.8'",
93
- "websockets>=9.1,<11",
+ # websockets 10.0 removed support for python 3.6.
94
+ # 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