From 8ea356d1961595e1ff1c31216d7083d2e93d43bd Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Mon, 22 Jul 2024 16:25:10 -0400 Subject: [PATCH] Update action.yaml --- .github/py-shiny/setup/action.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/py-shiny/setup/action.yaml b/.github/py-shiny/setup/action.yaml index 91df7033e..d55af5edb 100644 --- a/.github/py-shiny/setup/action.yaml +++ b/.github/py-shiny/setup/action.yaml @@ -29,35 +29,35 @@ runs: - name: Create virtual environment shell: bash run: | - uv venv + uv venv venv - name: Install dependencies shell: bash run: | uv pip install "htmltools @ git+https://github.com/posit-dev/py-htmltools.git" - source .venv/bin/activate && \ + source venv/bin/activate && \ make install-deps - name: Install shell: bash run: | - source .venv/bin/activate && \ - make install + # source venv/bin/activate && \ + # make install - # source .venv/bin/activate + source venv/bin/activate - # # make clean + # make clean - # # make dist - # uv pip install setuptools - # python setup.py sdist - # python setup.py bdist_wheel - # ls -l dist + # make dist + uv pip install setuptools + python setup.py sdist + python setup.py bdist_wheel + ls -l dist - # # make install - # uv pip uninstall shiny - # uv pip install dist/shiny*.whl + # make install + uv pip uninstall shiny + uv pip install dist/shiny*.whl - name: Install backports.tarfile if: ${{ startsWith(inputs.python-version, '3.8') }}