File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ pip install --upgrade streamlit
35
35
streamlit version
36
36
```
37
37
38
- ...and then verify that the version number printed is ` 0.82.0 ` .
38
+ ...and then verify that the version number printed is ` 0.83.1.dev20210621 ` .
39
39
40
40
** Try reproducing the issue now.** If not fixed, keep reading on.
41
41
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " streamlit-browser" ,
3
- "version" : " 0.82.0 " ,
3
+ "version" : " 0.83.1 " ,
4
4
"private" : true ,
5
5
"homepage" : " ./" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 27
27
)
28
28
sys .exit (exit_msg )
29
29
30
- VERSION = "0.82.0 " # PEP-440
30
+ VERSION = "0.83.1.dev20210621 " # PEP-440
31
31
32
- NAME = "streamlit"
32
+ NAME = "streamlit-nightly "
33
33
34
34
DESCRIPTION = "The fastest way to build data apps in Python"
35
35
Original file line number Diff line number Diff line change 57
57
58
58
# This used to be pkg_resources.require('streamlit') but it would cause
59
59
# pex files to fail. See #394 for more details.
60
- __version__ = _pkg_resources .get_distribution ("streamlit" ).version
60
+ __version__ = _pkg_resources .get_distribution ("streamlit-nightly " ).version
61
61
62
62
import contextlib as _contextlib
63
63
import re as _re
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def _get_installed_streamlit_version():
44
44
The version string specified in setup.py.
45
45
46
46
"""
47
- version_str = pkg_resources .get_distribution ("streamlit" ).version
47
+ version_str = pkg_resources .get_distribution ("streamlit-nightly " ).version
48
48
return _version_str_to_obj (version_str )
49
49
50
50
You can’t perform that action at this time.
0 commit comments