You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now all imports come from cytoolz. However, our setup.py module is setup to conditionally install either cytoolz or toolz depending on whether we're on Cython or pypy. This means that a pypy installation (which we aren't currently testing against) will fail because cytoolz won't be installed.
How can it be fixed?
Update all toolz/cytoolz imports to import from eth_utils.toolz.
The text was updated successfully, but these errors were encountered:
What was wrong?
Right now all imports come from
cytoolz
. However, oursetup.py
module is setup to conditionally install eithercytoolz
ortoolz
depending on whether we're onCython
orpypy
. This means that apypy
installation (which we aren't currently testing against) will fail becausecytoolz
won't be installed.How can it be fixed?
Update all
toolz/cytoolz
imports to import frometh_utils.toolz
.The text was updated successfully, but these errors were encountered: