Streamlit patch 1.32.2 is out but not being installed

Banner: We’ve discovered an inefficient use of CPU for Streamlit version 1.32.0 and 1.32.1. We’ve released a patch in version 1.32.2 that is available for use on Community Cloud and via PyPi for local development.

But my apps are still either running 1.31 or being downgraded when finding 1.32. How do we get the upgrade to 1.32.2?

Hi @obie,

Thanks for sharing this question!

For local development, try upgrading the version of Streamlit you have using this command:

pip install --upgrade streamlit==1.32.2

Make sure to check the version after upgrade to see it worked:

streamlit --version

For your deployed app, make sure your requirements.txt file has this:

streamlit==1.32.2

Let me know if this is helpful.

Hi! We pinned the version on our side to 1.31.1. We’ve removed the pinning of the version for new apps and we will slowly remove it for existing apps over thrle next days.

Ok, cool. Yes, was talking about community cloud, not local.