Closed guhanrv closed 1 year ago
Your trace back is ultimately coming out of scipy. Do you have evidence this is a seaborn problem per se, or that you just happened to run into it because seaborn imports scipy?
I was at scipy==1.4.1
and upgraded to scipy>=1.5.0
and the problem was resolved. I believe the reason that it seaborn allowed such a downgraded version of scipy
was because it is in the optional stats
dependencies in the pyproject.toml
?
Possibly? Seaborn only declares what versions of libraries it is directly known to be compatible with; interactions with dependencies would need to be handled by your package manager.
Closing as upstream issue
Hi all,
When I try to import the latest seaborn (0.12.2), I am getting an AttributeError on numpy:
I noticed that
pyproject.toml
withinseaborn
has the line"numpy>=1.20,!=1.24.0"
, and was wondering if this should be changed to"numpy>=1.20,<=1.24.0"
instead?I am reproducing my
pip list
below:Thanks a bunch.