File tree Expand file tree Collapse file tree 2 files changed +16
-5
lines changed
Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 1111
1212on :
1313 push :
14- branches : [' main' ]
14+ branches : [" main" ]
1515 pull_request :
16- branches : [' main' ]
16+ branches : [" main" ]
1717 workflow_dispatch :
1818 inputs :
1919 reflex_dep :
@@ -33,16 +33,16 @@ jobs:
3333 fail-fast : false
3434 matrix :
3535 os : [ubuntu-latest]
36- python-version : [' 3.11.5', ' 3.12.0' ]
36+ python-version : [" 3.11.5", " 3.12.0" ]
3737 runs-on : ${{ matrix.os }}
3838 steps :
3939 - uses : actions/checkout@v4
4040 - name : Install Requirements for reflex-web and reflex
4141 run : |
42- pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}' -r requirements.txt pytest playwright pytest-playwright
42+ pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}' -r requirements.txt pytest playwright pytest-playwright uvicorn
4343 playwright install --with-deps
4444 - name : Run unit tests
4545 run : |
4646 export PYTHONUNBUFFERED=1
4747 reflex init
48- pytest tests
48+ pytest tests
Original file line number Diff line number Diff line change @@ -48,6 +48,17 @@ def change(
4848
4949def changelog_content ():
5050 return rx .el .ul (
51+ change (
52+ "2025-03-17" ,
53+ "v0.7.3" ,
54+ "New .get var operation" ,
55+ [
56+ ", and _ options for formatted numbers" ,
57+ "added raw headers to router headers" ,
58+ "exposed SVG elements at the el level" ,
59+ ],
60+ "https://github.com/reflex-dev/reflex/releases/tag/v0.7.3" ,
61+ ),
5162 change (
5263 "2025-03-12" ,
5364 "v0.7.2" ,
You can’t perform that action at this time.
0 commit comments