File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
18
18
* Closed #1178 : Removed run-time dependency on asgiref. (#1183 )
19
19
20
+ * The uvicorn and click packages are no longer needed when running on Emscripten. (#1187 )
21
+
20
22
## [ 0.8.0] - 2024-03-04
21
23
22
24
### Breaking Changes
Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ setup_requires =
34
34
setuptools
35
35
install_requires =
36
36
typing-extensions>=4.0.1
37
- uvicorn>=0.16.0
37
+ uvicorn>=0.16.0; platform_system!="Emscripten"
38
38
starlette
39
39
websockets>=10.0
40
40
python-multipart
41
41
htmltools>=0.5.1
42
- click>=8.1.4
42
+ click>=8.1.4; platform_system!="Emscripten"
43
43
markdown-it-py>=1.1.0
44
44
# This is needed for markdown-it-py. Without it, when loading shiny/ui/_markdown.py,
45
45
# Python emits the following: "UserWarning: The 'tasklists' feature of GitHub
You can’t perform that action at this time.
0 commit comments