From 9990b17d1710bbf033dd450f0d15d7e6006354b9 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Thu, 7 Sep 2023 00:30:33 -0400 Subject: [PATCH] Use version value supplied to bundle url function (#9) --- shinylive/_assets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shinylive/_assets.py b/shinylive/_assets.py index 2ac5761..417b31d 100644 --- a/shinylive/_assets.py +++ b/shinylive/_assets.py @@ -45,7 +45,7 @@ def shinylive_bundle_url(version: str = SHINYLIVE_ASSETS_VERSION) -> str: """ return ( "https://github.com/rstudio/shinylive/releases/download/" - + f"v{SHINYLIVE_ASSETS_VERSION}/shinylive-{SHINYLIVE_ASSETS_VERSION}.tar.gz" + + f"v{version}/shinylive-{version}.tar.gz" )