Is streamlit 0.73.x an officially released versoin?
By upgrading to or fresh installing 0.73.x, on my pc slider fails to show current value.
I tested with this simple code on Ubuntu18, python3.8. When I hover over slider’s current value mark by mouse, it is shown.
import streamlit as st
num = st.slider('num', min_value=1, max_value=1000, step=10)
I tested with pip9.0.1 and pip20.3.3 to install streamlit, either way it fails with 0.73.x.
0.72.0 works fine with both versions of pip.
Obviously it must be related to client code which runs on web broswer, and pip freeze
output is identical between any installation using 0.72.0 or 0.73.x, except for streamlit version itself. I got tricked into believing 0.72.0 had same issue but I needed to restart web browser after testing 0.73.x .
At the moment I can stick to 0.72.0.
Any workaround suggestions if I have to use 0.73.x ?
Many thaks, for this wonderful software.