sensor-sdk 0.0.45__tar.gz → 0.0.46__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 (21) hide show
  1. {sensor_sdk-0.0.45/sensor_sdk.egg-info → sensor_sdk-0.0.46}/PKG-INFO +2 -2
  2. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46/sensor_sdk.egg-info}/PKG-INFO +2 -2
  3. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor_sdk.egg-info/requires.txt +1 -1
  4. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/setup.py +2 -2
  5. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/LICENSE.txt +0 -0
  6. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/README.md +0 -0
  7. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/__init__.py +0 -0
  8. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/bleak_host.py +0 -0
  9. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/bleak_process.py +0 -0
  10. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/gforce.py +0 -0
  11. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/sensor_controller.py +0 -0
  12. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/sensor_data.py +0 -0
  13. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/sensor_data_context.py +0 -0
  14. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/sensor_device.py +0 -0
  15. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/sensor_profile.py +0 -0
  16. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor/sensor_utils.py +0 -0
  17. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor_sdk.egg-info/SOURCES.txt +0 -0
  18. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor_sdk.egg-info/dependency_links.txt +0 -0
  19. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor_sdk.egg-info/top_level.txt +0 -0
  20. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/sensor_sdk.egg-info/zip-safe +0 -0
  21. {sensor_sdk-0.0.45 → sensor_sdk-0.0.46}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sensor-sdk
3
- Version: 0.0.45
3
+ Version: 0.0.46
4
4
  Summary: Python sdk for Synchroni
5
5
  Home-page: https://github.com/oymotion/SynchroniSDKPython
6
6
  Author: Martin Ye
@@ -10,7 +10,7 @@ Description-Content-Type: text/markdown
10
10
  License-File: LICENSE.txt
11
11
  Requires-Dist: numpy
12
12
  Requires-Dist: setuptools
13
- Requires-Dist: bleak
13
+ Requires-Dist: bleak>=3.0.2
14
14
  Dynamic: author
15
15
  Dynamic: author-email
16
16
  Dynamic: description
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sensor-sdk
3
- Version: 0.0.45
3
+ Version: 0.0.46
4
4
  Summary: Python sdk for Synchroni
5
5
  Home-page: https://github.com/oymotion/SynchroniSDKPython
6
6
  Author: Martin Ye
@@ -10,7 +10,7 @@ Description-Content-Type: text/markdown
10
10
  License-File: LICENSE.txt
11
11
  Requires-Dist: numpy
12
12
  Requires-Dist: setuptools
13
- Requires-Dist: bleak
13
+ Requires-Dist: bleak>=3.0.2
14
14
  Dynamic: author
15
15
  Dynamic: author-email
16
16
  Dynamic: description
@@ -1,3 +1,3 @@
1
1
  numpy
2
2
  setuptools
3
- bleak
3
+ bleak>=3.0.2
@@ -8,7 +8,7 @@ with open(os.path.join(this_directory, "README.md"), "r", encoding="utf-8") as f
8
8
 
9
9
  setup(
10
10
  name="sensor-sdk",
11
- version="0.0.45",
11
+ version="0.0.46",
12
12
  description="Python sdk for Synchroni",
13
13
  long_description=long_description,
14
14
  long_description_content_type="text/markdown",
@@ -16,7 +16,7 @@ setup(
16
16
  author="Martin Ye",
17
17
  author_email="yecq_82@hotmail.com",
18
18
  packages=find_packages(),
19
- install_requires=["numpy", "setuptools", "bleak"],
19
+ install_requires=["numpy", "setuptools", "bleak>=3.0.2"],
20
20
  package_data={"sensor": []},
21
21
  zip_safe=True,
22
22
  python_requires=">=3.10.0",
File without changes
File without changes
File without changes