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
I was trying to install the develop branch but ran into an issue related to versioneer, receiving the following error message:
AttributeError: module configparser has no attribute SafeConfigParser. Did you mean: RawConfigParser?
I was able to resolve this by following a suggestion from an unrelated GitHub discussion that addressed the same problem: pydata/pandas-datareader#969.
Specifically, I replaced SafeConfigParser with ConfigParser and readfp with read_file in versioneer.py. I'm sharing this solution in case others encounter the same issue.
The text was updated successfully, but these errors were encountered:
I was trying to install the develop branch but ran into an issue related to versioneer, receiving the following error message:
AttributeError: module
configparser
has no attributeSafeConfigParser
. Did you mean:RawConfigParser
?I was able to resolve this by following a suggestion from an unrelated GitHub discussion that addressed the same problem: pydata/pandas-datareader#969.
Specifically, I replaced
SafeConfigParser
withConfigParser
andreadfp
withread_file
inversioneer.py
. I'm sharing this solution in case others encounter the same issue.The text was updated successfully, but these errors were encountered: