Skip to content

Commit bd6d273

Browse files
committed
Merge remote-tracking branch 'origin/main' into release/masenf/bump-deps
2 parents 7c01f31 + 4c2b2ed commit bd6d273

Some content is hidden

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

57 files changed

+369
-699
lines changed

.github/workflows/benchmarks.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,24 +81,18 @@ jobs:
8181
matrix:
8282
# Show OS combos first in GUI
8383
os: [ubuntu-latest, windows-latest, macos-latest]
84-
python-version: ["3.9.21", "3.10.16", "3.11.11", "3.12.8"]
84+
python-version: ['3.10.16', '3.11.11', '3.12.8']
8585
exclude:
8686
- os: windows-latest
87-
python-version: "3.10.16"
88-
- os: windows-latest
89-
python-version: "3.9.21"
87+
python-version: '3.10.16'
9088
# keep only one python version for MacOS
9189
- os: macos-latest
92-
python-version: "3.9.21"
93-
- os: macos-latest
94-
python-version: "3.10.16"
90+
python-version: '3.10.16'
9591
- os: macos-latest
9692
python-version: "3.11.11"
9793
include:
9894
- os: windows-latest
99-
python-version: "3.10.11"
100-
- os: windows-latest
101-
python-version: "3.9.13"
95+
python-version: '3.10.11'
10296

10397
runs-on: ${{ matrix.os }}
10498
steps:

.github/workflows/check_outdated_dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- uses: ./.github/actions/setup_build_env
1818
with:
19-
python-version: "3.9.21"
19+
python-version: '3.10'
2020
run-poetry-install: true
2121
create-venv-at-path: .venv
2222

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,22 +43,17 @@ jobs:
4343
matrix:
4444
# Show OS combos first in GUI
4545
os: [ubuntu-latest, windows-latest]
46-
python-version: ["3.9.21", "3.10.16", "3.11.11", "3.12.8", "3.13.1"]
47-
# Windows is a bit behind on Python version availability in Github
46+
python-version: ['3.10.16', '3.11.11', '3.12.8', '3.13.1']
4847
exclude:
4948
- os: windows-latest
5049
python-version: "3.11.11"
5150
- os: windows-latest
52-
python-version: "3.10.16"
53-
- os: windows-latest
54-
python-version: "3.9.21"
51+
python-version: '3.10.16'
5552
include:
5653
- os: windows-latest
5754
python-version: "3.11.9"
5855
- os: windows-latest
59-
python-version: "3.10.11"
60-
- os: windows-latest
61-
python-version: "3.9.13"
56+
python-version: '3.10.11'
6257

6358
runs-on: ${{ matrix.os }}
6459
steps:

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,18 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
os: [ubuntu-latest, windows-latest]
31-
python-version: ["3.9.21", "3.10.16", "3.11.11", "3.12.8", "3.13.1"]
31+
python-version: ["3.10.16", "3.11.11", "3.12.8", "3.13.1"]
3232
# Windows is a bit behind on Python version availability in Github
3333
exclude:
3434
- os: windows-latest
3535
python-version: "3.11.11"
3636
- os: windows-latest
3737
python-version: "3.10.16"
38-
- os: windows-latest
39-
python-version: "3.9.21"
4038
include:
4139
- os: windows-latest
4240
python-version: "3.11.9"
4341
- os: windows-latest
4442
python-version: "3.10.11"
45-
- os: windows-latest
46-
python-version: "3.9.13"
4743
runs-on: ${{ matrix.os }}
4844

4945
# Service containers to run with `runner-job`
@@ -92,8 +88,8 @@ jobs:
9288
strategy:
9389
fail-fast: false
9490
matrix:
95-
# Note: py39, py310, py311 versions chosen due to available arm64 darwin builds.
96-
python-version: ["3.9.13", "3.10.11", "3.11.9", "3.12.8", "3.13.1"]
91+
# Note: py310, py311 versions chosen due to available arm64 darwin builds.
92+
python-version: ["3.10.11", "3.11.9", "3.12.8", "3.13.1"]
9793
runs-on: macos-latest
9894
steps:
9995
- uses: actions/checkout@v4

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repos:
2828
entry: python3 scripts/make_pyi.py
2929

3030
- repo: https://github.com/RobertCraigie/pyright-python
31-
rev: v1.1.313
31+
rev: v1.1.334
3232
hooks:
3333
- id: pyright
3434
args: [reflex, tests]

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Here is a quick guide on how to run Reflex repo locally so you can start contrib
88

99
**Prerequisites:**
1010

11-
- Python >= 3.9
11+
- Python >= 3.10
1212
- Poetry version >= 1.4.0 and add it to your path (see [Poetry Docs](https://python-poetry.org/docs/#installation) for more info).
1313

1414
**1. Fork this repository:**
@@ -87,7 +87,7 @@ poetry run ruff format .
8787
```
8888

8989
Consider installing git pre-commit hooks so Ruff, Pyright, Darglint and `make_pyi` will run automatically before each commit.
90-
Note that pre-commit will only be installed when you use a Python version >= 3.9.
90+
Note that pre-commit will only be installed when you use a Python version >= 3.10.
9191

9292
``` bash
9393
pre-commit install

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ See our [architecture page](https://reflex.dev/blog/2024-03-21-reflex-architectu
3434

3535
## ⚙️ Installation
3636

37-
Open a terminal and run (Requires Python 3.9+):
37+
Open a terminal and run (Requires Python 3.10+):
3838

3939
```bash
4040
pip install reflex

docs/de/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Auf unserer [Architektur-Seite](https://reflex.dev/blog/2024-03-21-reflex-archit
3434

3535
## ⚙️ Installation
3636

37-
Öffne ein Terminal und führe den folgenden Befehl aus (benötigt Python 3.9+):
37+
Öffne ein Terminal und führe den folgenden Befehl aus (benötigt Python 3.10+):
3838

3939
```bash
4040
pip install reflex

docs/es/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Consulta nuestra [página de arquitectura](https://reflex.dev/blog/2024-03-21-re
3535

3636
## ⚙️ Instalación
3737

38-
Abra un terminal y ejecute (Requiere Python 3.9+):
38+
Abra un terminal y ejecute (Requiere Python 3.10+):
3939

4040
```bash
4141
pip install reflex

docs/in/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Reflex के अंदर के कामकाज को जानने क
3535

3636
## ⚙️ इंस्टॉलेशन (Installation)
3737

38-
एक टर्मिनल खोलें और चलाएं (Python 3.9+ की आवश्यकता है):
38+
एक टर्मिनल खोलें और चलाएं (Python 3.10+ की आवश्यकता है):
3939

4040
```bash
4141
pip install reflex

0 commit comments

Comments
 (0)