burst-link-protocol 1.0.4__tar.gz → 1.0.5__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 (31) hide show
  1. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/CMakeLists.txt +4 -0
  2. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/PKG-INFO +1 -1
  3. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/pyproject.toml +1 -1
  4. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/python_bindings.cpp +1 -0
  5. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.github/dependabot.yml +0 -0
  6. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.github/workflows/pip.yml +0 -0
  7. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.github/workflows/wheel.yml +0 -0
  8. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.gitignore +0 -0
  9. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.vscode/c_cpp_properties.json +0 -0
  10. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.vscode/launch.json +0 -0
  11. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.vscode/settings.json +0 -0
  12. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/.vscode/tasks.json +0 -0
  13. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/LICENSE +0 -0
  14. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/README.md +0 -0
  15. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/ROADMAP.md +0 -0
  16. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/docs/design.drawio +0 -0
  17. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/docs/design.svg +0 -0
  18. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/platform/zephyr/CMakeLists.txt +0 -0
  19. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/burst_interface.h +0 -0
  20. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/burst_link_protocol/__init__.py +0 -0
  21. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/burst_link_protocol/main.py +0 -0
  22. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/crc.c +0 -0
  23. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/crc.h +0 -0
  24. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/decoder.c +0 -0
  25. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/src/encoder.c +0 -0
  26. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_burst.py +0 -0
  27. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_c.py +0 -0
  28. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_c_validation.py +0 -0
  29. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_python_validation.py +0 -0
  30. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/test/test_speed.py +0 -0
  31. {burst_link_protocol-1.0.4 → burst_link_protocol-1.0.5}/uv.lock +0 -0
@@ -51,9 +51,13 @@ find_package(nanobind CONFIG REQUIRED)
51
51
 
52
52
  # We are now ready to compile the actual extension module
53
53
  nanobind_add_module(
54
+
54
55
  # Name of the extension
55
56
  burst_interface_c
56
57
 
58
+ # domain name
59
+ NB_DOMAIN burst_interface_domain
60
+
57
61
  # Target the stable ABI for Python 3.12+, which reduces
58
62
  # the number of binary wheels that must be built. This
59
63
  # does nothing on older Python versions
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: burst-link-protocol
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: Binary Utility for Reliable Stream Transfer (BURST) is a library for encoding and decoding binary data streams into and from a byte stream.
5
5
  Author-Email: Floris vernieuwe <floris@vernieuwe.eu>
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "burst-link-protocol"
3
- version = "1.0.4" # Choose one version reference here
3
+ version = "1.0.5" # Choose one version reference here
4
4
  description = "Binary Utility for Reliable Stream Transfer (BURST) is a library for encoding and decoding binary data streams into and from a byte stream."
5
5
  requires-python = ">=3.10,<4.0"
6
6
  authors = [
@@ -72,6 +72,7 @@ struct BurstInterface
72
72
 
73
73
  NB_MODULE(burst_interface_c, m)
74
74
  {
75
+ nb::set_leak_warnings(false);
75
76
 
76
77
  nb::class_<BurstInterface>(m, "BurstInterfaceC")
77
78
  .def(nb::init<>())