streamlit-webrtc 0.53.8__tar.gz → 0.53.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/PKG-INFO +1 -1
  2. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/pyproject.toml +4 -5
  3. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/.gitignore +0 -0
  4. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/LICENSE +0 -0
  5. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/README.md +0 -0
  6. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/__init__.py +0 -0
  7. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/_compat.py +0 -0
  8. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/component.py +0 -0
  9. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/components_callbacks.py +0 -0
  10. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/config.py +0 -0
  11. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/credentials.py +0 -0
  12. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/eventloop.py +0 -0
  13. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/factory.py +0 -0
  14. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/frontend/dist/assets/index-DMhSSwr2.js +0 -0
  15. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/frontend/dist/index.html +0 -0
  16. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/mix.py +0 -0
  17. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/models.py +0 -0
  18. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/process.py +0 -0
  19. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/py.typed +0 -0
  20. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/receive.py +0 -0
  21. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/relay.py +0 -0
  22. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/server.py +0 -0
  23. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/session_info.py +0 -0
  24. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/shutdown.py +0 -0
  25. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/source.py +0 -0
  26. {streamlit_webrtc-0.53.8 → streamlit_webrtc-0.53.9}/streamlit_webrtc/webrtc.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: streamlit-webrtc
3
- Version: 0.53.8
3
+ Version: 0.53.9
4
4
  Summary: Real-time video and audio processing on Streamlit
5
5
  Project-URL: Repository, https://github.com/whitphx/streamlit-webrtc
6
6
  Author-email: "Yuichiro Tachibana (Tsuchiya)" <t.yic.yt@gmail.com>
@@ -19,21 +19,20 @@ Repository = "https://github.com/whitphx/streamlit-webrtc"
19
19
 
20
20
  [dependency-groups]
21
21
  dev = [
22
- "click>=7.0",
23
22
  "ruff>=0.9.10",
23
+ "pytest>=7.1.2",
24
24
  "mypy[faster-cache]>=1.15.0",
25
+ "bump-my-version>=1.0.2",
26
+ "pre-commit>=4.2.0",
25
27
  "pydub>=0.25.1",
26
28
  "matplotlib>=3.5.1",
27
29
  "streamlit-server-state>=0.17.1",
28
- "pytest>=7.1.2",
29
- "opencv-python-headless>=4.5.4.58,<5",
30
30
  "twilio>=8.1",
31
- "bump-my-version>=1.0.2",
31
+ "opencv-python-headless>=4.5.4.58",
32
32
  # For testing older versions of Streamlit: https://discuss.streamlit.io/t/modulenotfounderror-no-module-named-altair-vegalite-v4/42921
33
33
  "altair<5",
34
34
  # For testing older versions of Streamlit: https://discuss.streamlit.io/t/streamlit-run-with-protobuf-error/25632/3
35
35
  "protobuf<=3.20",
36
- "pre-commit>=4.2.0",
37
36
  ]
38
37
 
39
38
  [tool.hatch.version]