From 4240b1a9a039eac1f6e69bc63d3d18a68650c758 Mon Sep 17 00:00:00 2001 From: Carson Date: Thu, 11 Sep 2025 10:21:45 -0500 Subject: [PATCH] Bump deploy-tests to use latest shiny+htmltools releases --- .github/workflows/deploy-tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-tests.yaml b/.github/workflows/deploy-tests.yaml index 66b41e515..b5d1b6cc7 100644 --- a/.github/workflows/deploy-tests.yaml +++ b/.github/workflows/deploy-tests.yaml @@ -84,11 +84,11 @@ jobs: uv pip uninstall shiny htmltools uv pip install shiny htmltools - - name: Install GitHub shiny@v1.0.0 and htmltools@v0.5.3 (uninstall PyPI versions) + - name: Install GitHub shiny@v1.4.0 and htmltools@v0.6.0 (uninstall PyPI versions) if: ${{ matrix.config.github_shiny }} run: | uv pip uninstall shiny htmltools - uv pip install "htmltools @ git+https://github.com/posit-dev/py-htmltools.git@v0.5.3" "shiny @ git+https://github.com/posit-dev/py-shiny.git@v1.0.0" + uv pip install "htmltools @ git+https://github.com/posit-dev/py-htmltools.git@v0.6.0" "shiny @ git+https://github.com/posit-dev/py-shiny.git@v1.4.0" - name: Install rsconnect (PyPI) if: ${{ matrix.config.pypi_rsconnect }}