Skip to content

Commit 5036b6f

Browse files
Provide downgrade
1 parent e5b7a39 commit 5036b6f

14 files changed

+1276
-1292
lines changed

e2e_playwright/test-requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
bokeh==3.6.3
14+
bokeh==3.4.3
1515
bokeh-sampledata
1616
pixelmatch>=0.3.0,<1.0.0
1717
playwright==1.49.*
@@ -20,4 +20,4 @@ pytest-playwright>=0.3.3
2020
pytest-xdist
2121
scipy
2222
testfixtures
23-
dist/streamlit_bokeh-3.6.2-py3-none-any.whl
23+
dist/streamlit_bokeh-3.4.0-py3-none-any.whl

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setuptools.setup(
2323
name="streamlit-bokeh",
24-
version="3.6.2",
24+
version="3.4.0",
2525
author="Snowflake Inc",
2626
author_email="hello@streamlit.io",
2727
description="Streamlit component that allows you to render Bokeh charts",
@@ -57,7 +57,7 @@
5757
# If your component has other Python dependencies, list
5858
# them here.
5959
"streamlit>=1.26",
60-
"bokeh==3.6.3",
60+
"bokeh==3.4.3",
6161
],
6262
extras_require={
6363
"devel": [

streamlit_bokeh/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
from bokeh.plotting.figure import Figure
6262

6363
__version__ = importlib.metadata.version("streamlit_bokeh")
64-
REQUIRED_BOKEH_VERSION = "3.6.3"
64+
REQUIRED_BOKEH_VERSION = "3.4.3"
6565

6666

6767
def streamlit_bokeh(

streamlit_bokeh/frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "streamlit_bokeh",
33
"license": "Apache-2.0",
4-
"version": "3.6.2",
4+
"version": "3.4.0",
55
"private": true,
66
"dependencies": {
77
"color2k": "^2.0.3",

streamlit_bokeh/frontend/public/bokeh/bokeh-3.4.3.min.js

+714
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

streamlit_bokeh/frontend/public/bokeh/bokeh-3.6.3.min.js

-728
This file was deleted.

streamlit_bokeh/frontend/public/bokeh/bokeh-api-3.4.3.min.js

+61
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

streamlit_bokeh/frontend/public/bokeh/bokeh-api-3.6.3.min.js

-61
This file was deleted.

streamlit_bokeh/frontend/public/bokeh/bokeh-gl-3.4.3.min.js

+79
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

streamlit_bokeh/frontend/public/bokeh/bokeh-gl-3.6.3.min.js

-81
This file was deleted.

streamlit_bokeh/frontend/public/bokeh/bokeh-mathjax-3.6.3.min.js streamlit_bokeh/frontend/public/bokeh/bokeh-mathjax-3.4.3.min.js

+287-287
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

streamlit_bokeh/frontend/public/bokeh/bokeh-tables-3.6.3.min.js streamlit_bokeh/frontend/public/bokeh/bokeh-tables-3.4.3.min.js

+35-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

streamlit_bokeh/frontend/public/bokeh/bokeh-widgets-3.6.3.min.js streamlit_bokeh/frontend/public/bokeh/bokeh-widgets-3.4.3.min.js

+88-88
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

streamlit_bokeh/frontend/public/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@
4444
crossorigin
4545
/>
4646
<link rel="stylesheet" href="index.css" />
47-
<script src="bokeh/bokeh-3.6.3.min.js"></script>
48-
<script src="bokeh/bokeh-widgets-3.6.3.min.js"></script>
49-
<script src="bokeh/bokeh-tables-3.6.3.min.js"></script>
50-
<script src="bokeh/bokeh-api-3.6.3.min.js"></script>
51-
<script src="bokeh/bokeh-gl-3.6.3.min.js"></script>
52-
<script src="bokeh/bokeh-mathjax-3.6.3.min.js"></script>
47+
<script src="bokeh/bokeh-3.4.3.min.js"></script>
48+
<script src="bokeh/bokeh-widgets-3.4.3.min.js"></script>
49+
<script src="bokeh/bokeh-tables-3.4.3.min.js"></script>
50+
<script src="bokeh/bokeh-api-3.4.3.min.js"></script>
51+
<script src="bokeh/bokeh-gl-3.4.3.min.js"></script>
52+
<script src="bokeh/bokeh-mathjax-3.4.3.min.js"></script>
5353
</head>
5454
<body>
5555
<noscript>You need to enable JavaScript to run this app.</noscript>

0 commit comments

Comments
 (0)