Skip to content

Commit

Permalink
qs
Browse files Browse the repository at this point in the history
  • Loading branch information
lostmygithubaccount committed Aug 16, 2024
1 parent 34a5b38 commit 47ab47c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
run: just setup

- name: build site
run: just docs-build
run: |
source .venv/bin/activate
just docs-build
- name: deploy
uses: peaceiris/actions-gh-pages@v3
Expand Down
5 changes: 4 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ build:

# setup
setup *args:
@pip install --upgrade -r dev-requirements.txt {{args}}
@pip install uv
@uv venv
@source .venv/bin/activate
@uv pip install --upgrade --resolution=highest -r dev-requirements.txt {{args}}

# uninstall
uninstall:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ dependencies = [
'plotly',
'great-tables',
# dashboards and apps
'shiny',
'shinywidgets',
'shinyswatch',
'shiny>=1.0.0',
'shinywidgets>=0.3.3',
'shinyswatch>=0.7.0',
]

[project.urls]
Expand Down

0 comments on commit 47ab47c

Please sign in to comment.