Skip to content

Commit

Permalink
Update action.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Jul 22, 2024
1 parent a76573a commit 8ea356d
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/py-shiny/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down

0 comments on commit 8ea356d

Please sign in to comment.