Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Closed #1178: Removed run-time dependency on asgiref. (#1183)

* The uvicorn and click packages are no longer needed when running on Emscripten. (#1187)

## [0.8.0] - 2024-03-04

### Breaking Changes
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ setup_requires =
setuptools
install_requires =
typing-extensions>=4.0.1
uvicorn>=0.16.0
uvicorn>=0.16.0;platform_system!="Emscripten"
starlette
websockets>=10.0
python-multipart
htmltools>=0.5.1
click>=8.1.4
click>=8.1.4;platform_system!="Emscripten"
markdown-it-py>=1.1.0
# This is needed for markdown-it-py. Without it, when loading shiny/ui/_markdown.py,
# Python emits the following: "UserWarning: The 'tasklists' feature of GitHub
Expand Down