From baca9b267ec25e2afdbcb2e118f52ddd1507610d Mon Sep 17 00:00:00 2001 From: Carson Date: Thu, 31 Oct 2024 10:00:44 -0500 Subject: [PATCH 1/2] Pin ridgeplot to 0.1.25 --- docs/express-or-core.qmd | 2 +- docs/user-interfaces.qmd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/express-or-core.qmd b/docs/express-or-core.qmd index 7119c449..d7ec9098 100644 --- a/docs/express-or-core.qmd +++ b/docs/express-or-core.qmd @@ -262,7 +262,7 @@ def server(input, output, session): app = App(app_ui, server) ## file: requirements.txt -ridgeplot +ridgeplot==0.1.25 ``` ::: diff --git a/docs/user-interfaces.qmd b/docs/user-interfaces.qmd index 76097334..d1e4d524 100644 --- a/docs/user-interfaces.qmd +++ b/docs/user-interfaces.qmd @@ -387,7 +387,7 @@ def _(): ui.update_checkbox_group("time", selected=["Lunch", "Dinner"]) ## file: requirements.txt -ridgeplot +ridgeplot==0.1.25 ``` ::: From 8d5a6576ffeb067cdd6db660dfdb6d356678acaf Mon Sep 17 00:00:00 2001 From: Carson Date: Mon, 16 Dec 2024 12:29:30 -0600 Subject: [PATCH 2/2] Temporarily rollback shinylive version (until the relevant issue gets fixed) --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 3ebb2f81..4ea691ea 100644 --- a/Makefile +++ b/Makefile @@ -69,6 +69,9 @@ deps: $(PYBIN) $(PYBIN)/pip install pip --upgrade $(PYBIN)/pip install -r requirements.txt . $(PYBIN)/activate && cd py-shiny && make install-docs + # Temporary fix for this bug introduced in shinylive 0.7.1 + # https://github.com/posit-dev/py-shinylive/issues/45 + . $(PYBIN)/activate && pip install shinylive==0.7.0 ## Build qmd files for Shiny API docs quartodoc: $(PYBIN)