viso-sdk-python 1.1.7__tar.gz → 1.1.8__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 (136) hide show
  1. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/CHANGELOG.md +5 -0
  2. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/PKG-INFO +1 -1
  3. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/__init__.c +6 -3
  4. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/_version.c +12 -9
  5. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/_version.py +1 -1
  6. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/constants/__init__.c +6 -3
  7. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/constants/constants.c +6 -3
  8. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/constants/modules.c +6 -3
  9. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/constants/variables.c +11 -4
  10. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/detection/__init__.c +6 -3
  11. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/detection/object.c +11 -4
  12. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/detection/utils/__init__.c +6 -3
  13. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/detection/utils/nms.c +11 -4
  14. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/edge/__init__.c +6 -3
  15. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/edge/common.c +12 -5
  16. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/logging/__init__.c +6 -3
  17. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/logging/logger.c +11 -4
  18. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/mqtt/__init__.c +6 -3
  19. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/mqtt/mqtt_wrapper.c +19 -4
  20. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/mqtt/utils.c +19 -4
  21. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/nodered/__init__.c +6 -3
  22. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/nodered/flow.c +22 -7
  23. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/redis/__init__.c +6 -3
  24. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/redis/redis_wrapper.c +2809 -921
  25. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/redis/redis_wrapper.py +66 -11
  26. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/redis/utils.c +11 -4
  27. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/redis/viso_data.c +21 -6
  28. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/status/__init__.c +6 -3
  29. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/status/status_logger.c +19 -4
  30. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/structures/__init__.c +6 -3
  31. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/structures/rollingq.c +21 -6
  32. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/__init__.c +6 -3
  33. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/base.c +19 -4
  34. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/palette.c +23 -8
  35. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/utils.c +19 -4
  36. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/viz_object.c +22 -7
  37. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/viz_roi.c +19 -4
  38. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk_python.egg-info/PKG-INFO +1 -1
  39. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/AUTHORS +0 -0
  40. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/COPYING +0 -0
  41. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/MANIFEST.in +0 -0
  42. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/README.md +0 -0
  43. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/Makefile +0 -0
  44. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/__init__.py +0 -0
  45. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/conf.py +0 -0
  46. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/ext/__init__.py +0 -0
  47. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/ext/docstrings.py +0 -0
  48. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/ext/manager_tmpl.j2 +0 -0
  49. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/index.rst +0 -0
  50. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/make.bat +0 -0
  51. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/modules.rst +0 -0
  52. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk._version.rst +0 -0
  53. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.constants.constants.rst +0 -0
  54. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.constants.modules.rst +0 -0
  55. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.constants.rst +0 -0
  56. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.constants.variables.rst +0 -0
  57. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.edge.common.rst +0 -0
  58. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.edge.rst +0 -0
  59. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.logging.logger.rst +0 -0
  60. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.logging.rst +0 -0
  61. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.model.download.rst +0 -0
  62. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.model.rst +0 -0
  63. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.mqtt.mqtt_wrapper.rst +0 -0
  64. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.mqtt.rst +0 -0
  65. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.mqtt.utils.rst +0 -0
  66. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.nodered.flow.rst +0 -0
  67. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.nodered.rst +0 -0
  68. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.redis.redis_wrapper.rst +0 -0
  69. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.redis.rst +0 -0
  70. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.rst +0 -0
  71. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.status.rst +0 -0
  72. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.status.status_logger.rst +0 -0
  73. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.visualize.base.rst +0 -0
  74. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.visualize.palette.rst +0 -0
  75. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.visualize.rst +0 -0
  76. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.visualize.utils.rst +0 -0
  77. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.visualize.viz_object.rst +0 -0
  78. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/docs/source/viso_sdk.visualize.viz_roi.rst +0 -0
  79. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/pyproject.toml +0 -0
  80. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/requirements-dev.txt +0 -0
  81. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/requirements-docker.txt +0 -0
  82. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/requirements-docs.txt +0 -0
  83. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/requirements-lint.txt +0 -0
  84. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/requirements-test.txt +0 -0
  85. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/requirements.txt +0 -0
  86. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/setup.cfg +0 -0
  87. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/setup.py +0 -0
  88. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/__init__.py +0 -0
  89. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/conftest.py +0 -0
  90. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/fixtures/flow.json +0 -0
  91. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/meta/__init__.py +0 -0
  92. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/meta/test_ensure_type_hints.py +0 -0
  93. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/sample.png +0 -0
  94. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/smoke/__init__.py +0 -0
  95. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/smoke/test_dists.py +0 -0
  96. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/test_flow.py +0 -0
  97. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/test_status.py +0 -0
  98. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/test_status_logger.py +0 -0
  99. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tests/test_visualize.py +0 -0
  100. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/tox.ini +0 -0
  101. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/__init__.py +0 -0
  102. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/assets/fonts/Roboto-Medium.ttf +0 -0
  103. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/constants/__init__.py +0 -0
  104. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/constants/constants.py +0 -0
  105. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/constants/modules.py +0 -0
  106. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/constants/variables.py +0 -0
  107. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/detection/__init__.py +0 -0
  108. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/detection/object.py +0 -0
  109. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/detection/utils/__init__.py +0 -0
  110. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/detection/utils/nms.py +0 -0
  111. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/edge/__init__.py +0 -0
  112. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/edge/common.py +0 -0
  113. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/logging/__init__.py +0 -0
  114. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/logging/logger.py +0 -0
  115. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/mqtt/__init__.py +0 -0
  116. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/mqtt/mqtt_wrapper.py +0 -0
  117. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/mqtt/utils.py +0 -0
  118. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/nodered/__init__.py +0 -0
  119. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/nodered/flow.py +0 -0
  120. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/redis/__init__.py +0 -0
  121. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/redis/utils.py +0 -0
  122. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/redis/viso_data.py +0 -0
  123. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/status/__init__.py +0 -0
  124. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/status/status_logger.py +0 -0
  125. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/structures/__init__.py +0 -0
  126. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/structures/rollingq.py +0 -0
  127. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/__init__.py +0 -0
  128. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/base.py +0 -0
  129. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/palette.py +0 -0
  130. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/utils.py +0 -0
  131. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/viz_object.py +0 -0
  132. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk/visualize/viz_roi.py +0 -0
  133. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk_python.egg-info/SOURCES.txt +0 -0
  134. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk_python.egg-info/dependency_links.txt +0 -0
  135. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk_python.egg-info/requires.txt +0 -0
  136. {viso-sdk-python-1.1.7 → viso-sdk-python-1.1.8}/viso_sdk_python.egg-info/top_level.txt +0 -0
@@ -174,3 +174,8 @@
174
174
  ## v1.1.7
175
175
  ### Fix
176
176
  - Revert deletion of redis frames which caused issue with multiple consumers
177
+
178
+ ## v1.1.8
179
+ ### Enhancements
180
+ - Add thread pool executors to handle redis requests
181
+ - Add redis frame TTL
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: viso-sdk-python
3
- Version: 1.1.7
3
+ Version: 1.1.8
4
4
  Summary: VisoSDK: A Python SDK for use in Viso containers
5
5
  Home-page: https://gitlab.com/TopKamera/03_edge/Base/viso-sdk-python-public.git
6
6
  Author: support@viso.ai
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -1955,7 +1958,7 @@ static const char __pyx_k_path[] = "path";
1955
1958
  static const char __pyx_k_spec[] = "__spec__";
1956
1959
  static const char __pyx_k_test[] = "__test__";
1957
1960
  static const char __pyx_k_year[] = "year";
1958
- static const char __pyx_k_1_1_7[] = "1.1.7";
1961
+ static const char __pyx_k_1_1_8[] = "1.1.8";
1959
1962
  static const char __pyx_k_LGPL3[] = "LGPL3";
1960
1963
  static const char __pyx_k_email[] = "__email__";
1961
1964
  static const char __pyx_k_title[] = "__title__";
@@ -2047,7 +2050,7 @@ static __pyx_mstatetype * const __pyx_mstate_global = &__pyx_mstate_global_stati
2047
2050
  #endif
2048
2051
  /* #### Code section: constant_name_defines ### */
2049
2052
  #define __pyx_kp_u_ __pyx_string_tab[0]
2050
- #define __pyx_kp_u_1_1_7 __pyx_string_tab[1]
2053
+ #define __pyx_kp_u_1_1_8 __pyx_string_tab[1]
2051
2054
  #define __pyx_kp_u_Copyright_2020 __pyx_string_tab[2]
2052
2055
  #define __pyx_n_u_LGPL3 __pyx_string_tab[3]
2053
2056
  #define __pyx_kp_u_Viso_ai_team __pyx_string_tab[4]
@@ -2675,16 +2678,16 @@ __Pyx_RefNannySetupContext("PyInit__version", 0);
2675
2678
  * __license__ = "LGPL3"
2676
2679
  * __title__ = "viso-sdk-python" # <<<<<<<<<<<<<<
2677
2680
  *
2678
- * __version__ = "1.1.7"
2681
+ * __version__ = "1.1.8"
2679
2682
  */
2680
2683
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_title, __pyx_mstate_global->__pyx_kp_u_viso_sdk_python) < 0) __PYX_ERR(0, 15, __pyx_L1_error)
2681
2684
 
2682
2685
  /* "viso_sdk/_version.py":17
2683
2686
  * __title__ = "viso-sdk-python"
2684
2687
  *
2685
- * __version__ = "1.1.7" # <<<<<<<<<<<<<<
2688
+ * __version__ = "1.1.8" # <<<<<<<<<<<<<<
2686
2689
  */
2687
- if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_version, __pyx_mstate_global->__pyx_kp_u_1_1_7) < 0) __PYX_ERR(0, 17, __pyx_L1_error)
2690
+ if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_version, __pyx_mstate_global->__pyx_kp_u_1_1_8) < 0) __PYX_ERR(0, 17, __pyx_L1_error)
2688
2691
 
2689
2692
  /* "viso_sdk/_version.py":1
2690
2693
  * """ # <<<<<<<<<<<<<<
@@ -2764,7 +2767,7 @@ typedef struct {
2764
2767
  static const char * const __pyx_string_tab_encodings[] = { 0 };
2765
2768
  static const __Pyx_StringTabEntry __pyx_string_tab[] = {
2766
2769
  {__pyx_k_, sizeof(__pyx_k_), 0, 1, 0}, /* PyObject cname: __pyx_kp_u_ */
2767
- {__pyx_k_1_1_7, sizeof(__pyx_k_1_1_7), 0, 1, 0}, /* PyObject cname: __pyx_kp_u_1_1_7 */
2770
+ {__pyx_k_1_1_8, sizeof(__pyx_k_1_1_8), 0, 1, 0}, /* PyObject cname: __pyx_kp_u_1_1_8 */
2768
2771
  {__pyx_k_Copyright_2020, sizeof(__pyx_k_Copyright_2020), 0, 1, 0}, /* PyObject cname: __pyx_kp_u_Copyright_2020 */
2769
2772
  {__pyx_k_LGPL3, sizeof(__pyx_k_LGPL3), 0, 1, 1}, /* PyObject cname: __pyx_n_u_LGPL3 */
2770
2773
  {__pyx_k_Viso_ai_team, sizeof(__pyx_k_Viso_ai_team), 0, 1, 0}, /* PyObject cname: __pyx_kp_u_Viso_ai_team */
@@ -14,4 +14,4 @@ __email__ = "g.corrigan@viso.ai"
14
14
  __license__ = "LGPL3"
15
15
  __title__ = "viso-sdk-python"
16
16
 
17
- __version__ = "1.1.7"
17
+ __version__ = "1.1.8"
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -4816,6 +4819,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
4816
4819
  changed = 1;
4817
4820
  }
4818
4821
  #endif // CYTHON_METH_FASTCALL
4822
+ #if !CYTHON_COMPILING_IN_PYPY
4819
4823
  else if (strcmp(memb->name, "__module__") == 0) {
4820
4824
  PyObject *descr;
4821
4825
  assert(memb->type == T_OBJECT);
@@ -4830,11 +4834,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
4830
4834
  }
4831
4835
  changed = 1;
4832
4836
  }
4837
+ #endif // !CYTHON_COMPILING_IN_PYPY
4833
4838
  }
4834
4839
  memb++;
4835
4840
  }
4836
4841
  }
4837
4842
  #endif // !CYTHON_COMPILING_IN_LIMITED_API
4843
+ #if !CYTHON_COMPILING_IN_PYPY
4838
4844
  slot = spec->slots;
4839
4845
  while (slot && slot->slot && slot->slot != Py_tp_getset)
4840
4846
  slot++;
@@ -4866,6 +4872,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
4866
4872
  ++getset;
4867
4873
  }
4868
4874
  }
4875
+ #endif // !CYTHON_COMPILING_IN_PYPY
4869
4876
  if (changed)
4870
4877
  PyType_Modified(type);
4871
4878
  #endif // PY_VERSION_HEX > 0x030900B1
@@ -4998,7 +5005,7 @@ bad:
4998
5005
  }
4999
5006
 
5000
5007
  /* CommonTypesMetaclass */
5001
- PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
5008
+ static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
5002
5009
  return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
5003
5010
  }
5004
5011
  static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -8479,6 +8482,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
8479
8482
  changed = 1;
8480
8483
  }
8481
8484
  #endif // CYTHON_METH_FASTCALL
8485
+ #if !CYTHON_COMPILING_IN_PYPY
8482
8486
  else if (strcmp(memb->name, "__module__") == 0) {
8483
8487
  PyObject *descr;
8484
8488
  assert(memb->type == T_OBJECT);
@@ -8493,11 +8497,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
8493
8497
  }
8494
8498
  changed = 1;
8495
8499
  }
8500
+ #endif // !CYTHON_COMPILING_IN_PYPY
8496
8501
  }
8497
8502
  memb++;
8498
8503
  }
8499
8504
  }
8500
8505
  #endif // !CYTHON_COMPILING_IN_LIMITED_API
8506
+ #if !CYTHON_COMPILING_IN_PYPY
8501
8507
  slot = spec->slots;
8502
8508
  while (slot && slot->slot && slot->slot != Py_tp_getset)
8503
8509
  slot++;
@@ -8529,6 +8535,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
8529
8535
  ++getset;
8530
8536
  }
8531
8537
  }
8538
+ #endif // !CYTHON_COMPILING_IN_PYPY
8532
8539
  if (changed)
8533
8540
  PyType_Modified(type);
8534
8541
  #endif // PY_VERSION_HEX > 0x030900B1
@@ -8661,7 +8668,7 @@ bad:
8661
8668
  }
8662
8669
 
8663
8670
  /* CommonTypesMetaclass */
8664
- PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
8671
+ static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
8665
8672
  return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
8666
8673
  }
8667
8674
  static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -9452,6 +9455,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
9452
9455
  changed = 1;
9453
9456
  }
9454
9457
  #endif // CYTHON_METH_FASTCALL
9458
+ #if !CYTHON_COMPILING_IN_PYPY
9455
9459
  else if (strcmp(memb->name, "__module__") == 0) {
9456
9460
  PyObject *descr;
9457
9461
  assert(memb->type == T_OBJECT);
@@ -9466,11 +9470,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
9466
9470
  }
9467
9471
  changed = 1;
9468
9472
  }
9473
+ #endif // !CYTHON_COMPILING_IN_PYPY
9469
9474
  }
9470
9475
  memb++;
9471
9476
  }
9472
9477
  }
9473
9478
  #endif // !CYTHON_COMPILING_IN_LIMITED_API
9479
+ #if !CYTHON_COMPILING_IN_PYPY
9474
9480
  slot = spec->slots;
9475
9481
  while (slot && slot->slot && slot->slot != Py_tp_getset)
9476
9482
  slot++;
@@ -9502,6 +9508,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
9502
9508
  ++getset;
9503
9509
  }
9504
9510
  }
9511
+ #endif // !CYTHON_COMPILING_IN_PYPY
9505
9512
  if (changed)
9506
9513
  PyType_Modified(type);
9507
9514
  #endif // PY_VERSION_HEX > 0x030900B1
@@ -9634,7 +9641,7 @@ bad:
9634
9641
  }
9635
9642
 
9636
9643
  /* CommonTypesMetaclass */
9637
- PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
9644
+ static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
9638
9645
  return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
9639
9646
  }
9640
9647
  static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -2408,7 +2411,7 @@ static const char __pyx_k_get_integrated_gpu_info[] = "get_integrated_gpu_info";
2408
2411
  static const char __pyx_k_grep_v_grep_awk_print_3[] = "' | grep -v 'grep' | awk '{ print $3 }'";
2409
2412
  static const char __pyx_k_viso_sdk_edge_common_py[] = "viso_sdk/edge/common.py";
2410
2413
  static const char __pyx_k_Q_2V1A_4uBfBfAT_a_3e1D_b[] = "\320\000\025\220Q\340\004\013\2102\210V\2201\220A\330\004\013\2104\210u\220B\220f\230B\230f\240A\240T\250\021\250!\330\004\010\210\006\210a\330\004\013\2103\210e\2201\220D\230\006\230b\240\002\240!";
2411
- static const char __pyx_k_b_q_3ar_q_E_6_d_A_1_fAR_a_1[] = "\320\000\"\240(\250!\360\014\000\005\006\330\010\016\210b\320\020'\240q\330\010\013\2103\210a\210r\220\026\220q\230\004\230E\240\022\2406\250\022\250;\260d\270\"\270A\330\014\023\2201\330\004\013\210=\230\001\330\010\016\210f\220A\220R\320\027?\270\310a\330\004\013\2101";
2414
+ static const char __pyx_k_b_q_3ar_q_E_6_d_A_1_fAR_a_1[] = "\320\000\"\240(\250!\360\014\000\005\006\330\010\016\210b\320\020'\240q\330\010\013\2103\210a\210r\220\026\220q\230\004\230E\240\022\2406\250\022\250;\260d\270\"\270A\330\014\023\2201\330\004\013\210=\230\001\330\010\016\210f\220A\220R\320\027?\270\177\310a\330\004\013\2101";
2412
2415
  static const char __pyx_k_Calling_usb_reset_and_sleeping[] = "Calling usb-reset and sleeping ";
2413
2416
  static const char __pyx_k_HA_6_6_z_1_T_7_Kq_S_Qd_r_A_e1E[] = "\320\000$\240H\250A\360\014\000\n\024\2206\230\021\230!\2306\240\027\250\007\250z\270\032\3001\330\010\r\210T\220\024\220\\\240\021\330\004\010\210\010\220\003\2207\230\"\230K\240q\330\010\013\210:\220S\230\001\330\014\022\220#\220Q\220d\230&\240\001\240\026\240r\250\021\250!\330\014\022\220&\230\001\230\022\230>\250\033\260A\330\014\016\210e\2201\220E\230\027\240\001\240\030\250\021";
2414
2417
  static const char __pyx_k_2V1A_4uBfBfA_a_c_aq_s_4q_s_4q_e[] = "\320\000\021\220\021\360\010\000\005\014\2102\210V\2201\220A\330\004\013\2104\210u\220B\220f\230B\230f\240A\330\004\010\210\006\210a\340\004\016\210c\220\021\220$\220a\220q\330\004\017\210s\220!\2204\220q\230\001\330\004\017\210s\220!\2204\220q\230\001\340\004\016\210e\2201\220I\230R\230v\240R\240y\260\001\340\004\014\210H\220J\230i\240y\260\010\270\n\300+\310Q";
@@ -8055,6 +8058,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
8055
8058
  changed = 1;
8056
8059
  }
8057
8060
  #endif // CYTHON_METH_FASTCALL
8061
+ #if !CYTHON_COMPILING_IN_PYPY
8058
8062
  else if (strcmp(memb->name, "__module__") == 0) {
8059
8063
  PyObject *descr;
8060
8064
  assert(memb->type == T_OBJECT);
@@ -8069,11 +8073,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
8069
8073
  }
8070
8074
  changed = 1;
8071
8075
  }
8076
+ #endif // !CYTHON_COMPILING_IN_PYPY
8072
8077
  }
8073
8078
  memb++;
8074
8079
  }
8075
8080
  }
8076
8081
  #endif // !CYTHON_COMPILING_IN_LIMITED_API
8082
+ #if !CYTHON_COMPILING_IN_PYPY
8077
8083
  slot = spec->slots;
8078
8084
  while (slot && slot->slot && slot->slot != Py_tp_getset)
8079
8085
  slot++;
@@ -8105,6 +8111,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
8105
8111
  ++getset;
8106
8112
  }
8107
8113
  }
8114
+ #endif // !CYTHON_COMPILING_IN_PYPY
8108
8115
  if (changed)
8109
8116
  PyType_Modified(type);
8110
8117
  #endif // PY_VERSION_HEX > 0x030900B1
@@ -8237,7 +8244,7 @@ bad:
8237
8244
  }
8238
8245
 
8239
8246
  /* CommonTypesMetaclass */
8240
- PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
8247
+ static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
8241
8248
  return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
8242
8249
  }
8243
8250
  static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -7147,6 +7150,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
7147
7150
  changed = 1;
7148
7151
  }
7149
7152
  #endif // CYTHON_METH_FASTCALL
7153
+ #if !CYTHON_COMPILING_IN_PYPY
7150
7154
  else if (strcmp(memb->name, "__module__") == 0) {
7151
7155
  PyObject *descr;
7152
7156
  assert(memb->type == T_OBJECT);
@@ -7161,11 +7165,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
7161
7165
  }
7162
7166
  changed = 1;
7163
7167
  }
7168
+ #endif // !CYTHON_COMPILING_IN_PYPY
7164
7169
  }
7165
7170
  memb++;
7166
7171
  }
7167
7172
  }
7168
7173
  #endif // !CYTHON_COMPILING_IN_LIMITED_API
7174
+ #if !CYTHON_COMPILING_IN_PYPY
7169
7175
  slot = spec->slots;
7170
7176
  while (slot && slot->slot && slot->slot != Py_tp_getset)
7171
7177
  slot++;
@@ -7197,6 +7203,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
7197
7203
  ++getset;
7198
7204
  }
7199
7205
  }
7206
+ #endif // !CYTHON_COMPILING_IN_PYPY
7200
7207
  if (changed)
7201
7208
  PyType_Modified(type);
7202
7209
  #endif // PY_VERSION_HEX > 0x030900B1
@@ -7329,7 +7336,7 @@ bad:
7329
7336
  }
7330
7337
 
7331
7338
  /* CommonTypesMetaclass */
7332
- PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
7339
+ static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
7333
7340
  return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
7334
7341
  }
7335
7342
  static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif