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
2 changes: 1 addition & 1 deletion .github/workflows/enforce-pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Enforce Pre-Commit Hooks
on:
push:
branches:
- "develop"
- "main"
pull_request:
types: [opened, synchronize, reopened]
# Allows workflow to be called from other workflows
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.7.3
bokeh==3.8.0
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.7.2-py3-none-any.whl
dist/streamlit_bokeh-3.8.0-py3-none-any.whl
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setuptools.setup(
name="streamlit-bokeh",
version="3.7.2",
version="3.8.0",
author="Snowflake Inc",
author_email="hello@streamlit.io",
description="Streamlit component that allows you to render Bokeh charts",
Expand Down Expand Up @@ -57,7 +57,7 @@
# If your component has other Python dependencies, list
# them here.
"streamlit>=1.26",
"bokeh==3.7.3",
"bokeh==3.8.0",
],
extras_require={
"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 @@ -61,7 +61,7 @@
from bokeh.plotting.figure import Figure

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


def streamlit_bokeh(
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.7.2",
"version": "3.8.0",
"private": true,
"dependencies": {
"color2k": "^2.0.3",
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions streamlit_bokeh/frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
crossorigin
/>
<link rel="stylesheet" href="index.css" />
<script src="bokeh/bokeh-3.7.3.min.js"></script>
<script src="bokeh/bokeh-widgets-3.7.3.min.js"></script>
<script src="bokeh/bokeh-tables-3.7.3.min.js"></script>
<script src="bokeh/bokeh-api-3.7.3.min.js"></script>
<script src="bokeh/bokeh-gl-3.7.3.min.js"></script>
<script src="bokeh/bokeh-mathjax-3.7.3.min.js"></script>
<script src="bokeh/bokeh-3.8.0.min.js"></script>
<script src="bokeh/bokeh-widgets-3.8.0.min.js"></script>
<script src="bokeh/bokeh-tables-3.8.0.min.js"></script>
<script src="bokeh/bokeh-api-3.8.0.min.js"></script>
<script src="bokeh/bokeh-gl-3.8.0.min.js"></script>
<script src="bokeh/bokeh-mathjax-3.8.0.min.js"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Loading