How to remove depreciated warnings from application

Hi Team,

From Yesterday Night, i am getting all my depreciated warnings upfront on my app. Kindly help to resolve this issue.

Actually i started working on correcting those from code level but till the time since my application is in production, i need to remove those ASAP.

Thanks in Advance

Regards
Sridhar

Thanks,

got temporary solution as

[client]
showErrorDetails = false

added these 2 lines in .streamlit/config.toml

It removed the deprecated warnings.

1 Like

Hi @sridharr

For a more permanent fix, the error message is suggesting that you can replace st.experimental_memo with st.cache_data as the former is a deprecated function.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.