Skip to content

Commit 7c53e27

Browse files
committed
Merge remote-tracking branch 'origin/main' into lendemor/use_pyleak
2 parents 410cd28 + 651539f commit 7c53e27

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1445
-1764
lines changed

.github/workflows/check_outdated_dependencies.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,12 @@ jobs:
5656
path: reflex-web
5757
- name: Compile pyproject.toml into requirements.txt
5858
working-directory: ./reflex-web
59-
run: uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
59+
run: |
60+
uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
61+
grep -ivE "reflex " requirements.txt > requirements.txt.tmp && mv requirements.txt.tmp requirements.txt
6062
- name: Install Requirements for reflex-web
6163
working-directory: ./reflex-web
62-
run: uv pip install $(grep -ivE "reflex " requirements.txt)
64+
run: uv pip install -r requirements.txt
6365
- name: Init Website for reflex-web
6466
working-directory: ./reflex-web
6567
run: uv run reflex init

.github/workflows/integration_tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,12 @@ jobs:
125125

126126
- name: Compile pyproject.toml into requirements.txt
127127
working-directory: ./reflex-web
128-
run: uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
128+
run: |
129+
uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
130+
grep -ivE "reflex " requirements.txt > requirements.txt.tmp && mv requirements.txt.tmp requirements.txt
129131
- name: Install Requirements for reflex-web
130132
working-directory: ./reflex-web
131-
run: uv pip install $(grep -ivE "reflex " requirements.txt)
133+
run: uv pip install -r requirements.txt
132134
- name: Init Website for reflex-web
133135
working-directory: ./reflex-web
134136
run: uv run --active --no-sync reflex init
@@ -189,10 +191,12 @@ jobs:
189191
path: reflex-web
190192
- name: Compile pyproject.toml into requirements.txt
191193
working-directory: ./reflex-web
192-
run: uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
194+
run: |
195+
uv pip compile pyproject.toml --no-annotate --no-header --no-deps --output-file requirements.txt
196+
grep -ivE "reflex " requirements.txt > requirements.txt.tmp && mv requirements.txt.tmp requirements.txt
193197
- name: Install Requirements for reflex-web
194198
working-directory: ./reflex-web
195-
run: uv pip install $(grep -ivE "reflex " requirements.txt)
199+
run: uv pip install -r requirements.txt
196200
- name: Init Website for reflex-web
197201
working-directory: ./reflex-web
198202
run: uv run --active --no-sync reflex init

MCP_README

Lines changed: 0 additions & 97 deletions
This file was deleted.

MCP_README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Reflex MCP Server
2+
3+
The Reflex MCP Server provides comprehensive access to Reflex framework documentation and component information through the Model Context Protocol (MCP). This server is deployed and ready to use with your MCP-compatible AI tools.
4+
5+
Check the documentation at https://reflex.dev/docs/ai-builder/integrations/mcp-overview

0 commit comments

Comments
 (0)