streamlit-webrtc 0.48.2__tar.gz → 0.49.0__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 (24) hide show
  1. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/PKG-INFO +2 -3
  2. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/pyproject.toml +2 -2
  3. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/LICENSE +0 -0
  4. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/README.md +0 -0
  5. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/__init__.py +0 -0
  6. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/_compat.py +0 -0
  7. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/component.py +0 -0
  8. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/components_callbacks.py +0 -0
  9. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/config.py +0 -0
  10. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/eventloop.py +0 -0
  11. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/factory.py +0 -0
  12. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/frontend/dist/assets/index-BfANt4tM.js +0 -0
  13. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/frontend/dist/index.html +0 -0
  14. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/mix.py +0 -0
  15. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/models.py +0 -0
  16. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/process.py +0 -0
  17. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/py.typed +0 -0
  18. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/receive.py +0 -0
  19. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/relay.py +0 -0
  20. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/server.py +0 -0
  21. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/session_info.py +0 -0
  22. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/shutdown.py +0 -0
  23. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/source.py +0 -0
  24. {streamlit_webrtc-0.48.2 → streamlit_webrtc-0.49.0}/streamlit_webrtc/webrtc.py +0 -0
@@ -1,14 +1,13 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: streamlit-webrtc
3
- Version: 0.48.2
3
+ Version: 0.49.0
4
4
  Summary: Real-time video and audio processing on Streamlit
5
5
  License: MIT
6
6
  Author: Yuichiro Tachibana (Tsuchiya)
7
7
  Author-email: t.yic.yt@gmail.com
8
- Requires-Python: >=3.8, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*
8
+ Requires-Python: >=3.9, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.8
12
11
  Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "streamlit-webrtc"
3
- version = "0.48.2"
3
+ version = "0.49.0"
4
4
  description = "Real-time video and audio processing on Streamlit"
5
5
  authors = ["Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com>"]
6
6
  license = "MIT"
@@ -14,7 +14,7 @@ exclude = [
14
14
  ]
15
15
 
16
16
  [tool.poetry.dependencies]
17
- python = ">=3.8,<4,!=3.9.7" # 3.9.7 is excluded due to https://github.com/streamlit/streamlit/pull/5168
17
+ python = ">=3.9,<4,!=3.9.7" # 3.9.7 is excluded due to https://github.com/streamlit/streamlit/pull/5168
18
18
  # For allow-same-origin, >=0.73.0 is required. See https://blog.streamlit.io/streamlit-components-security-and-a-five-month-quest-to-ship-a-single-line-of-code/
19
19
  # 0.84.0 has an error at marshalling component values.
20
20
  streamlit = ">=0.84.1"