sok-ble 0.1.1__tar.gz → 0.1.2__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. {sok_ble-0.1.1 → sok_ble-0.1.2}/PKG-INFO +6 -2
  2. {sok_ble-0.1.1 → sok_ble-0.1.2}/README.md +4 -0
  3. {sok_ble-0.1.1 → sok_ble-0.1.2}/pyproject.toml +2 -2
  4. {sok_ble-0.1.1 → sok_ble-0.1.2/src}/sok_ble.egg-info/PKG-INFO +6 -2
  5. sok_ble-0.1.2/src/sok_ble.egg-info/SOURCES.txt +20 -0
  6. sok_ble-0.1.2/src/sok_ble.egg-info/requires.txt +2 -0
  7. sok_ble-0.1.1/sok_ble.egg-info/SOURCES.txt +0 -20
  8. sok_ble-0.1.1/sok_ble.egg-info/requires.txt +0 -2
  9. {sok_ble-0.1.1 → sok_ble-0.1.2}/setup.cfg +0 -0
  10. {sok_ble-0.1.1 → sok_ble-0.1.2/src}/sok_ble/__init__.py +0 -0
  11. {sok_ble-0.1.1 → sok_ble-0.1.2/src}/sok_ble/const.py +0 -0
  12. {sok_ble-0.1.1 → sok_ble-0.1.2/src}/sok_ble/exceptions.py +0 -0
  13. {sok_ble-0.1.1 → sok_ble-0.1.2/src}/sok_ble/sok_bluetooth_device.py +0 -0
  14. {sok_ble-0.1.1 → sok_ble-0.1.2/src}/sok_ble/sok_parser.py +0 -0
  15. {sok_ble-0.1.1 → sok_ble-0.1.2/src}/sok_ble.egg-info/dependency_links.txt +0 -0
  16. {sok_ble-0.1.1 → sok_ble-0.1.2/src}/sok_ble.egg-info/top_level.txt +0 -0
  17. {sok_ble-0.1.1 → sok_ble-0.1.2}/tests/test_const.py +0 -0
  18. {sok_ble-0.1.1 → sok_ble-0.1.2}/tests/test_derived.py +0 -0
  19. {sok_ble-0.1.1 → sok_ble-0.1.2}/tests/test_device_full.py +0 -0
  20. {sok_ble-0.1.1 → sok_ble-0.1.2}/tests/test_device_minimal.py +0 -0
  21. {sok_ble-0.1.1 → sok_ble-0.1.2}/tests/test_exceptions.py +0 -0
  22. {sok_ble-0.1.1 → sok_ble-0.1.2}/tests/test_integration_mock.py +0 -0
  23. {sok_ble-0.1.1 → sok_ble-0.1.2}/tests/test_parser_full.py +0 -0
  24. {sok_ble-0.1.1 → sok_ble-0.1.2}/tests/test_parser_info.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sok-ble
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: SOK BLE battery interface library
5
5
  Author-email: Mitchell Carlson <mitchell.carlson.pro@gmail.com>
6
6
  License: Apache-2.0
@@ -13,7 +13,7 @@ Classifier: Operating System :: OS Independent
13
13
  Requires-Python: >=3.11
14
14
  Description-Content-Type: text/markdown
15
15
  Requires-Dist: bleak>=0.22.3
16
- Requires-Dist: bleak-retry-connector>=3.10.0
16
+ Requires-Dist: bleak-retry-connector>=3.9.0
17
17
 
18
18
  # SOK BLE
19
19
 
@@ -38,3 +38,7 @@ async def main() -> None:
38
38
 
39
39
  asyncio.run(main())
40
40
  ```
41
+
42
+ ## References
43
+ [@zuccaro's comment](https://github.com/Louisvdw/dbus-serialbattery/issues/350#issuecomment-1500658941)
44
+ [Bluetooth-Devices/inkbird-ble](https://github.com/Bluetooth-Devices/inkbird-ble)
@@ -21,3 +21,7 @@ async def main() -> None:
21
21
 
22
22
  asyncio.run(main())
23
23
  ```
24
+
25
+ ## References
26
+ [@zuccaro's comment](https://github.com/Louisvdw/dbus-serialbattery/issues/350#issuecomment-1500658941)
27
+ [Bluetooth-Devices/inkbird-ble](https://github.com/Bluetooth-Devices/inkbird-ble)
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "sok-ble"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "SOK BLE battery interface library"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
7
7
  dependencies = [
8
8
  "bleak>=0.22.3",
9
- "bleak-retry-connector>=3.10.0",
9
+ "bleak-retry-connector>=3.9.0",
10
10
  ]
11
11
  authors = [
12
12
  {name = "Mitchell Carlson", email = "mitchell.carlson.pro@gmail.com"}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sok-ble
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: SOK BLE battery interface library
5
5
  Author-email: Mitchell Carlson <mitchell.carlson.pro@gmail.com>
6
6
  License: Apache-2.0
@@ -13,7 +13,7 @@ Classifier: Operating System :: OS Independent
13
13
  Requires-Python: >=3.11
14
14
  Description-Content-Type: text/markdown
15
15
  Requires-Dist: bleak>=0.22.3
16
- Requires-Dist: bleak-retry-connector>=3.10.0
16
+ Requires-Dist: bleak-retry-connector>=3.9.0
17
17
 
18
18
  # SOK BLE
19
19
 
@@ -38,3 +38,7 @@ async def main() -> None:
38
38
 
39
39
  asyncio.run(main())
40
40
  ```
41
+
42
+ ## References
43
+ [@zuccaro's comment](https://github.com/Louisvdw/dbus-serialbattery/issues/350#issuecomment-1500658941)
44
+ [Bluetooth-Devices/inkbird-ble](https://github.com/Bluetooth-Devices/inkbird-ble)
@@ -0,0 +1,20 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/sok_ble/__init__.py
4
+ src/sok_ble/const.py
5
+ src/sok_ble/exceptions.py
6
+ src/sok_ble/sok_bluetooth_device.py
7
+ src/sok_ble/sok_parser.py
8
+ src/sok_ble.egg-info/PKG-INFO
9
+ src/sok_ble.egg-info/SOURCES.txt
10
+ src/sok_ble.egg-info/dependency_links.txt
11
+ src/sok_ble.egg-info/requires.txt
12
+ src/sok_ble.egg-info/top_level.txt
13
+ tests/test_const.py
14
+ tests/test_derived.py
15
+ tests/test_device_full.py
16
+ tests/test_device_minimal.py
17
+ tests/test_exceptions.py
18
+ tests/test_integration_mock.py
19
+ tests/test_parser_full.py
20
+ tests/test_parser_info.py
@@ -0,0 +1,2 @@
1
+ bleak>=0.22.3
2
+ bleak-retry-connector>=3.9.0
@@ -1,20 +0,0 @@
1
- README.md
2
- pyproject.toml
3
- sok_ble/__init__.py
4
- sok_ble/const.py
5
- sok_ble/exceptions.py
6
- sok_ble/sok_bluetooth_device.py
7
- sok_ble/sok_parser.py
8
- sok_ble.egg-info/PKG-INFO
9
- sok_ble.egg-info/SOURCES.txt
10
- sok_ble.egg-info/dependency_links.txt
11
- sok_ble.egg-info/requires.txt
12
- sok_ble.egg-info/top_level.txt
13
- tests/test_const.py
14
- tests/test_derived.py
15
- tests/test_device_full.py
16
- tests/test_device_minimal.py
17
- tests/test_exceptions.py
18
- tests/test_integration_mock.py
19
- tests/test_parser_full.py
20
- tests/test_parser_info.py
@@ -1,2 +0,0 @@
1
- bleak>=0.22.3
2
- bleak-retry-connector>=3.10.0
File without changes
File without changes
File without changes
File without changes
File without changes