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
3 changes: 3 additions & 0 deletions .github/workflows/check_outdated_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ jobs:
repository: reflex-dev/reflex-web
ref: main
path: reflex-web
- name: Compile pyproject.toml into requirements.txt
working-directory: ./reflex-web
run: uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
- name: Install Requirements for reflex-web
working-directory: ./reflex-web
run: uv pip install $(grep -ivE "reflex " requirements.txt)
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ jobs:
ref: main
path: reflex-web

- name: Compile pyproject.toml into requirements.txt
working-directory: ./reflex-web
run: uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
- name: Install Requirements for reflex-web
working-directory: ./reflex-web
run: uv pip install $(grep -ivE "reflex " requirements.txt)
Expand Down