streamlit-webrtc 0.63.0__tar.gz → 0.63.1__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.63.0 → streamlit_webrtc-0.63.1}/PKG-INFO +2 -2
  2. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/pyproject.toml +1 -1
  3. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/.gitignore +0 -0
  4. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/LICENSE +0 -0
  5. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/README.md +0 -0
  6. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/__init__.py +0 -0
  7. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/_compat.py +0 -0
  8. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/component.py +0 -0
  9. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/components_callbacks.py +0 -0
  10. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/config.py +0 -0
  11. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/credentials.py +0 -0
  12. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/eventloop.py +0 -0
  13. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/factory.py +0 -0
  14. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/frontend/dist/assets/index-Cn4hJFys.js +0 -0
  15. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/frontend/dist/index.html +0 -0
  16. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/mix.py +0 -0
  17. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/models.py +0 -0
  18. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/process.py +0 -0
  19. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/py.typed +0 -0
  20. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/receive.py +0 -0
  21. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/relay.py +0 -0
  22. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/server.py +0 -0
  23. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/session_info.py +0 -0
  24. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/shutdown.py +0 -0
  25. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/source.py +0 -0
  26. {streamlit_webrtc-0.63.0 → streamlit_webrtc-0.63.1}/streamlit_webrtc/webrtc.py +0 -0
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: streamlit-webrtc
3
- Version: 0.63.0
3
+ Version: 0.63.1
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>
7
7
  License-Expression: MIT
8
8
  License-File: LICENSE
9
9
  Requires-Python: !=3.9.7,>=3.9
10
- Requires-Dist: aioice>=0.10.0
10
+ Requires-Dist: aioice>=0.10.1
11
11
  Requires-Dist: aiortc>=1.11.0
12
12
  Requires-Dist: packaging>=20.0
13
13
  Requires-Dist: streamlit>=0.89.0
@@ -13,7 +13,7 @@ dependencies = [
13
13
  "streamlit>=0.89.0",
14
14
  "aiortc>=1.11.0", # aiortc<1.4.0 causes an error with cryptography>=39.0.0. See https://github.com/whitphx/streamlit-webrtc/issues/1164. The fix was introduced into aiortc in https://github.com/aiortc/aiortc/commit/08b0a7e9f5030a9f7e5617382e92560d4ae763a2 that 1.4.0 included.
15
15
  "packaging>=20.0",
16
- "aioice>=0.10.0",
16
+ "aioice>=0.10.1",
17
17
  ]
18
18
 
19
19
  [project.urls]