Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions e2e_playwright/test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
bokeh==3.8.0
bokeh==3.8.1
bokeh-sampledata
pixelmatch>=0.3.0,<1.0.0
playwright==1.49.*
Expand All @@ -20,4 +20,4 @@ pytest-playwright>=0.3.3
pytest-xdist
scipy
testfixtures
dist/streamlit_bokeh-3.8.0-py3-none-any.whl
dist/streamlit_bokeh-3.8.1-py3-none-any.whl
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "streamlit-bokeh"
version = "3.8.0"
version = "3.8.1"
description = "Streamlit component that allows you to render Bokeh charts"
readme = "README.md"
license = "Apache-2.0"
Expand All @@ -38,7 +38,7 @@ classifiers = [
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = ["streamlit>=1.26", "bokeh==3.8.0"]
dependencies = ["streamlit>=1.26", "bokeh==3.8.1"]

[project.optional-dependencies]
devel = [
Expand Down
2 changes: 1 addition & 1 deletion streamlit_bokeh/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@


__version__ = importlib.metadata.version("streamlit_bokeh")
REQUIRED_BOKEH_VERSION = "3.8.0"
REQUIRED_BOKEH_VERSION = "3.8.1"


def streamlit_bokeh(
Expand Down
12 changes: 6 additions & 6 deletions streamlit_bokeh/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
crossorigin
/>
<link rel="stylesheet" href="/src/v1/index.css" />
<script src="%BASE_URL%bokeh/bokeh-3.8.0.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-widgets-3.8.0.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-tables-3.8.0.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-api-3.8.0.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-gl-3.8.0.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-mathjax-3.8.0.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-3.8.1.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-widgets-3.8.1.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-tables-3.8.1.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-api-3.8.1.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-gl-3.8.1.min.js"></script>
<script src="%BASE_URL%bokeh/bokeh-mathjax-3.8.1.min.js"></script>
<script type="module" src="/src/v1/index.ts"></script>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion streamlit_bokeh/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "streamlit_bokeh",
"license": "Apache-2.0",
"version": "3.8.0",
"version": "3.8.1",
"private": true,
"dependencies": {
"@streamlit/component-v2-lib": "^0.1.0",
Expand Down

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions streamlit_bokeh/frontend/src/v2/loaders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,12 @@ async function ensureBokehCoreLoaded(coreUrl: string, timeoutMs = 10000) {
}

const BOKEH_URLS = {
core: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-3.8.0.min.js`),
widgets: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-widgets-3.8.0.min.js`),
tables: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-tables-3.8.0.min.js`),
api: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-api-3.8.0.min.js`),
gl: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-gl-3.8.0.min.js`),
mathjax: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-mathjax-3.8.0.min.js`),
core: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-3.8.1.min.js`),
widgets: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-widgets-3.8.1.min.js`),
tables: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-tables-3.8.1.min.js`),
api: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-api-3.8.1.min.js`),
gl: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-gl-3.8.1.min.js`),
mathjax: resolveAssetUrl(`${BOKEH_PUBLIC}bokeh-mathjax-3.8.1.min.js`),
}

const PLUGIN_URLS = [
Expand Down
2 changes: 1 addition & 1 deletion streamlit_bokeh/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[project]
name = "streamlit-bokeh"
version = "3.8.0"
version = "3.8.1"

[[tool.streamlit.component.components]]
name = "streamlit_bokeh"
Expand Down
Loading