Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version with Bokeh 3.4.3 which still supports Python 3.9 #23

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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.6.3
bokeh==3.4.3
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.6.2-py3-none-any.whl
dist/streamlit_bokeh-3.4.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.6.2",
version="3.4.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.6.3",
"bokeh==3.4.3",
],
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.6.3"
REQUIRED_BOKEH_VERSION = "3.4.3"


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.6.2",
"version": "3.4.0",
"private": true,
"dependencies": {
"color2k": "^2.0.3",
Expand Down
714 changes: 714 additions & 0 deletions streamlit_bokeh/frontend/public/bokeh/bokeh-3.4.3.min.js

Large diffs are not rendered by default.

728 changes: 0 additions & 728 deletions streamlit_bokeh/frontend/public/bokeh/bokeh-3.6.3.min.js

This file was deleted.

61 changes: 61 additions & 0 deletions streamlit_bokeh/frontend/public/bokeh/bokeh-api-3.4.3.min.js

Large diffs are not rendered by default.

61 changes: 0 additions & 61 deletions streamlit_bokeh/frontend/public/bokeh/bokeh-api-3.6.3.min.js

This file was deleted.

79 changes: 79 additions & 0 deletions streamlit_bokeh/frontend/public/bokeh/bokeh-gl-3.4.3.min.js

Large diffs are not rendered by default.

81 changes: 0 additions & 81 deletions streamlit_bokeh/frontend/public/bokeh/bokeh-gl-3.6.3.min.js

This file was deleted.

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.6.3.min.js"></script>
<script src="bokeh/bokeh-widgets-3.6.3.min.js"></script>
<script src="bokeh/bokeh-tables-3.6.3.min.js"></script>
<script src="bokeh/bokeh-api-3.6.3.min.js"></script>
<script src="bokeh/bokeh-gl-3.6.3.min.js"></script>
<script src="bokeh/bokeh-mathjax-3.6.3.min.js"></script>
<script src="bokeh/bokeh-3.4.3.min.js"></script>
<script src="bokeh/bokeh-widgets-3.4.3.min.js"></script>
<script src="bokeh/bokeh-tables-3.4.3.min.js"></script>
<script src="bokeh/bokeh-api-3.4.3.min.js"></script>
<script src="bokeh/bokeh-gl-3.4.3.min.js"></script>
<script src="bokeh/bokeh-mathjax-3.4.3.min.js"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Loading