Skip to content

Commit c513720

Browse files
authored
fix reflex-web ci not having requirements.txt (#5296)
* fix reflex-web ci not having requirements.txt * maybe? * no active * maybe? * working-directory * maybe? * try compiling the pyproject into txt * output file
1 parent 08f9b06 commit c513720

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/check_outdated_dependencies.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ jobs:
5454
repository: reflex-dev/reflex-web
5555
ref: main
5656
path: reflex-web
57+
- name: Compile pyproject.toml into requirements.txt
58+
working-directory: ./reflex-web
59+
run: uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
5760
- name: Install Requirements for reflex-web
5861
working-directory: ./reflex-web
5962
run: uv pip install $(grep -ivE "reflex " requirements.txt)

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ jobs:
123123
ref: main
124124
path: reflex-web
125125

126+
- name: Compile pyproject.toml into requirements.txt
127+
working-directory: ./reflex-web
128+
run: uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
126129
- name: Install Requirements for reflex-web
127130
working-directory: ./reflex-web
128131
run: uv pip install $(grep -ivE "reflex " requirements.txt)

0 commit comments

Comments
 (0)