Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/py-shiny/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ runs:
shell: bash
run: |
pip install https://github.com/rstudio/py-htmltools/tarball/main
# Install shiny _before_ shinylive; otherwise shinylive will install cause
# shiny to be installed from PyPI, and may bring in old versions of
# dependencies.
pip install -e .
pip install https://github.com/posit-dev/py-shinylive/tarball/main
make install-deps

- name: Install
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
run: |
cd docs
make ../venv
. ../venv/bin/activate && pip install https://github.com/posit-dev/py-htmltools/tarball/main https://github.com/posit-dev/py-shinylive/tarball/main
make deps

- name: Run quartodoc
Expand Down
7 changes: 5 additions & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,12 @@ help:
@python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)

dev-htmltools: $(PYBIN) ## Install development version of htmltools
$(PYBIN)/pip install https://github.com/rstudio/py-htmltools/tarball/main
$(PYBIN)/pip install https://github.com/posit-dev/py-htmltools/tarball/main

deps: $(PYBIN) ## Install build dependencies
dev-shinylive: $(PYBIN) ## Install development version of shinylive
$(PYBIN)/pip install https://github.com/posit-dev/py-shinylive/tarball/main

deps: $(PYBIN) dev-htmltools dev-shinylive ## Install build dependencies
$(PYBIN)/pip install pip --upgrade
$(PYBIN)/pip install -e ..[doc]

Expand Down
3 changes: 0 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ This directory contains files to generate Shiny for Python API documentation, us
To build the docs, first install the Python dependencies and Quarto extensions:

```bash
# Install development version of htmltools (do this if you are using a development version of shiny)
make dev-htmltools

# Install build dependencies
make deps
```
Expand Down