Closed kbessonov1984 closed 3 years ago
Thanks @kbessonov1984 👍
Amazing! Just came across this bug, your fix worked for me thanks @kbessonov1984
Just a note for this issue. If you already have a conda environment with pandas > 1.0.5 and then install sistr (via conda) it does not downgrade pandas to 1.0.5. But if you install sistr to a new environment it will install pandas 1.0.5.
Just for future reference, in pandas 1.1.0 the
EmptyDataError
exception definition is no longer defined inpandas/io/common.py
submodule causingfrom pandas.io.common import EmptyDataError
statement, defined insistr/src/blast_wrapper/__init__.py
, to fail. The import statement requires to be changed tofrom pandas.errors import EmptyDataError
. Could be addressed in next SISTR release. This is now handled by new conda recipe v1.1.1 build 2 restricting pandas version to <= 1.0.5