motorcortex-python 0.25.0__tar.gz → 0.25.1__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 (28) hide show
  1. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/PKG-INFO +1 -1
  2. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/init_threads.py +2 -2
  3. motorcortex_python-0.25.1/motorcortex/version.py +1 -0
  4. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex_python.egg-info/PKG-INFO +1 -1
  5. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex_python.egg-info/SOURCES.txt +1 -0
  6. motorcortex_python-0.25.1/pyproject.toml +3 -0
  7. motorcortex_python-0.25.0/motorcortex/version.py +0 -1
  8. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/LICENSE +0 -0
  9. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/MANIFEST.in +0 -0
  10. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/README.md +0 -0
  11. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/__init__.py +0 -0
  12. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/message_types.py +0 -0
  13. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/motorcortex_hash.json +0 -0
  14. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/motorcortex_pb2.py +0 -0
  15. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/nng_url.py +0 -0
  16. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/parameter_tree.py +0 -0
  17. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/reply.py +0 -0
  18. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/request.py +0 -0
  19. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/setup_logger.py +0 -0
  20. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/state_callback_handler.py +0 -0
  21. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/subscribe.py +0 -0
  22. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/subscription.py +0 -0
  23. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex/timespec.py +0 -0
  24. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex_python.egg-info/dependency_links.txt +0 -0
  25. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex_python.egg-info/requires.txt +0 -0
  26. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/motorcortex_python.egg-info/top_level.txt +0 -0
  27. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/setup.cfg +0 -0
  28. {motorcortex_python-0.25.0 → motorcortex_python-0.25.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: motorcortex-python
3
- Version: 0.25.0
3
+ Version: 0.25.1
4
4
  Summary: Python bindings for Motorcortex Engine
5
5
  Home-page: https://www.motorcortex.io
6
6
  Author: Alexey Zakharov
@@ -16,5 +16,5 @@ def init_nng_threads(task=2, expire=1, poller=1, resolver=1):
16
16
  lib.nng_init_set_parameter(lib.NNG_INIT_NUM_EXPIRE_THREADS, expire)
17
17
  lib.nng_init_set_parameter(lib.NNG_INIT_NUM_POLLER_THREADS, poller)
18
18
  lib.nng_init_set_parameter(lib.NNG_INIT_NUM_RESOLVER_THREADS, resolver)
19
- except:
20
- logger.error(f"[INIT-THREADS] Interface is not avaliable")
19
+ except AttributeError:
20
+ logger.error("[INIT-THREADS] Cannot adjust thread count: interface unavailable")
@@ -0,0 +1 @@
1
+ __version__ = '0.25.1'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: motorcortex-python
3
- Version: 0.25.0
3
+ Version: 0.25.1
4
4
  Summary: Python bindings for Motorcortex Engine
5
5
  Home-page: https://www.motorcortex.io
6
6
  Author: Alexey Zakharov
@@ -1,6 +1,7 @@
1
1
  LICENSE
2
2
  MANIFEST.in
3
3
  README.md
4
+ pyproject.toml
4
5
  setup.py
5
6
  motorcortex/__init__.py
6
7
  motorcortex/init_threads.py
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61,<70", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -1 +0,0 @@
1
- __version__ = '0.25.0'