We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 046dbde commit b2b0da0Copy full SHA for b2b0da0
reflex/utils/prerequisites.py
@@ -955,9 +955,10 @@ def needs_reinit(frontend: bool = True) -> bool:
955
console.warn(
956
"""Windows Subsystem for Linux (WSL) is recommended for improving initial install times."""
957
)
958
- if sys.version_info >= (3, 12) and uvi_ver != "0.24.0.post1":
+ if sys.version_info >= (3, 12):
959
960
- f"""On Python 3.12, `uvicorn==0.24.0.post1` is recommended for improved hot reload times. Found {uvi_ver} instead."""
+ "Python 3.12 on Windows has known issues with hot reload (reflex-dev/reflex#3536). "
961
+ "Python 3.11 is recommended with this release of Reflex."
962
963
964
if sys.version_info < (3, 12) and uvi_ver != "0.20.0":
0 commit comments