Closed sirmurphalot closed 1 year ago
Hi, I'm not able to replicate the error with the following conda environment on linux. Looks like you're on windows. Don't have access to a windows machine, but tests passed on windows with python 3.8. Can you try again with this environment?
name: issue-51
channels:
- defaults
dependencies:
- python=3.8.8
- tqdm
- numpy
- pandas
- scipy=1.10.1
- seaborn
- notebook
- statsmodels
Upon further investigation, I think this was an issue with my conda environment having loaded statsmodels.api
, which caused the issue with that version of scipy
-- not sepia
's value at all. Thanks for your attention!
I think that the current version of
scipy
is causing issues with loadingsepia
. From my module loading:Gives the following error:
Per the suggestion here, I worked around this by placing:
before my
sepia
call. This is all withPython 3.8.8
andScipy 1.10.1
.