Skip to content

Commit 2f6a05b

Browse files
Release 3.7.2 with Bokeh version 3.7.3 (#29)
* Update Bokeh to 3.7.3 and release 3.7.2 * Add some release updates * Update snapshots --------- Co-authored-by: sfc-gh-kmcgrady <103003886+sfc-gh-kmcgrady@users.noreply.github.com> Co-authored-by: Ken McGrady <ken.mcgrady@snowflake.com>
1 parent f94c7e0 commit 2f6a05b

16 files changed

+786
-782
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ jobs:
6262
uses: actions/checkout@v4
6363
with:
6464
ref: main
65-
persist-credentials: false
65+
# Save the access token to the local git config, so
66+
# later git commands can work.
67+
persist-credentials: true
6668
submodules: "recursive"
6769
fetch-depth: 2
6870

@@ -137,19 +139,20 @@ jobs:
137139
exit 1
138140
fi
139141
140-
- name: Install prerequisites of slack message
141-
run: pip install requests
142-
143142
- name: Successful Release Slack Message
144143
if: success()
145144
env:
146145
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
147146
RUN_ID: ${{ github.run_id }}
148-
run: python scripts/slack_notification.py release success
147+
run: |
148+
pip install requests
149+
python scripts/slack_notification.py release success
149150
150151
- name: Failed Release Slack Message
151152
if: failure()
152153
env:
153154
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
154155
RUN_ID: ${{ github.run_id }}
155-
run: python scripts/slack_notification.py release failure
156+
run: |
157+
pip install requests
158+
python scripts/slack_notification.py release failure
546 Bytes
Loading
15 Bytes
Loading
557 Bytes
Loading
0 Bytes
Loading

e2e_playwright/test-requirements.txt

Lines changed: 2 additions & 2 deletions
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.7.2
14+
bokeh==3.7.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.7.1-py3-none-any.whl
23+
dist/streamlit_bokeh-3.7.2-py3-none-any.whl

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setuptools.setup(
2323
name="streamlit-bokeh",
24-
version="3.7.1",
24+
version="3.7.2",
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.7.2",
60+
"bokeh==3.7.3",
6161
],
6262
extras_require={
6363
"devel": [

streamlit_bokeh/__init__.py

Lines changed: 1 addition & 1 deletion
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.7.2"
64+
REQUIRED_BOKEH_VERSION = "3.7.3"
6565

6666

6767
def streamlit_bokeh(

streamlit_bokeh/frontend/package.json

Lines changed: 1 addition & 1 deletion
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.7.1",
4+
"version": "3.7.2",
55
"private": true,
66
"dependencies": {
77
"color2k": "^2.0.3",

streamlit_bokeh/frontend/public/bokeh/bokeh-3.7.2.min.js renamed to streamlit_bokeh/frontend/public/bokeh/bokeh-3.7.3.min.js

Lines changed: 296 additions & 295 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)