@@ -25,22 +25,13 @@ jobs:
2525 # if: github.event.pull_request.merged == true
2626 strategy :
2727 fail-fast : false
28- matrix :
29- # Show OS combos first in GUI
30- os : [ubuntu-latest]
31- python-version : ["3.12.8"]
32- node-version : ["18.x"]
3328
34- runs-on : ${{ matrix.os }}
29+ runs-on : ubuntu-latest
3530 steps :
3631 - uses : actions/checkout@v4
37- - name : Use Node.js ${{ matrix.node-version }}
38- uses : actions/setup-node@v4
39- with :
40- node-version : ${{ matrix.node-version }}
4132 - uses : ./.github/actions/setup_build_env
4233 with :
43- python-version : ${{ matrix.python-version }}
34+ python-version : 3.13
4435 run-uv-sync : true
4536
4637 - name : Clone Reflex Website Repo
8071 - uses : actions/checkout@v4
8172 - uses : ./.github/actions/setup_build_env
8273 with :
83- python-version : 3.12.8
74+ python-version : 3.13
8475 run-uv-sync : true
8576
8677 - name : Build reflex
9081 # Only run if the database creds are available in this context.
9182 run :
9283 uv run python benchmarks/benchmark_package_size.py --os ubuntu-latest
93- --python-version 3.12.8 --commit-sha "${{ github.sha }}" --pr-id "${{ github.event.pull_request.id }}"
84+ --python-version 3.13 --commit-sha "${{ github.sha }}" --pr-id "${{ github.event.pull_request.id }}"
9485 --branch-name "${{ github.head_ref || github.ref_name }}"
9586 --path ./dist
9687
10394 matrix :
10495 # Show OS combos first in GUI
10596 os : [ubuntu-latest, windows-latest, macos-latest]
106- python-version : ["3.12.8"]
10797
10898 runs-on : ${{ matrix.os }}
10999 steps :
@@ -112,7 +102,7 @@ jobs:
112102 id : setup-python
113103 uses : actions/setup-python@v5
114104 with :
115- python-version : ${{ matrix.python-version }}
105+ python-version : 3.13
116106 - name : Install UV
117107 uses : astral-sh/setup-uv@v5
118108 with :
@@ -126,7 +116,7 @@ jobs:
126116 - name : calculate and upload size
127117 run :
128118 uv run python benchmarks/benchmark_package_size.py --os "${{ matrix.os }}"
129- --python-version "${{ matrix.python-version }} " --commit-sha "${{ github.sha }}"
119+ --python-version "3.13 " --commit-sha "${{ github.sha }}"
130120 --pr-id "${{ github.event.pull_request.id }}"
131121 --branch-name "${{ github.head_ref || github.ref_name }}"
132122 --path ./.venv
0 commit comments