Skip to content

Commit a678880

Browse files
committed
Merge branch 'main' into wrap-sankey-recharts
2 parents 899615f + a4fac5d commit a678880

File tree

299 files changed

+9068
-7796
lines changed

Some content is hidden

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

299 files changed

+9068
-7796
lines changed

β€Ž.coveragercβ€Ž

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

β€Ž.github/actions/setup_build_env/action.ymlβ€Ž

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,14 @@ runs:
2727
using: "composite"
2828
steps:
2929
- name: Install UV
30-
uses: astral-sh/setup-uv@v5
30+
uses: astral-sh/setup-uv@v6
3131
with:
3232
python-version: ${{ inputs.python-version }}
3333
enable-cache: true
3434
prune-cache: false
35+
activate-environment: true
3536
cache-dependency-glob: "uv.lock"
37+
- name: Install Dependencies
38+
if: inputs.run-uv-sync == 'true'
39+
run: uv sync
40+
shell: bash

β€Ž.github/workflows/benchmarks.ymlβ€Ž

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

β€Ž.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)

β€Ž.github/workflows/integration_tests_wsl.ymlβ€Ž

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

β€Ž.github/workflows/performance.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727

2828
- name: Install uv
29-
uses: astral-sh/setup-uv@v5
29+
uses: astral-sh/setup-uv@v6
3030

3131
- name: Set up Python
3232
uses: actions/setup-python@v5

β€Ž.gitignoreβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ reflex.db
2020
.env.*
2121
node_modules
2222
package-lock.json
23-
*.pyi
23+
*.pyi
24+
.pre-commit-config.yaml

β€Ž.pre-commit-config.yamlβ€Ž

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

β€Ž.python-versionβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

0 commit comments

Comments
Β (0)