ephys-link 1.2.7__tar.gz → 1.2.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 (32) hide show
  1. {ephys_link-1.2.7 → ephys_link-1.2.8}/PKG-INFO +1 -1
  2. ephys_link-1.2.8/src/ephys_link/__about__.py +1 -0
  3. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/server.py +1 -1
  4. ephys_link-1.2.7/src/ephys_link/__about__.py +0 -1
  5. {ephys_link-1.2.7 → ephys_link-1.2.8}/.gitignore +0 -0
  6. {ephys_link-1.2.7 → ephys_link-1.2.8}/LICENSE +0 -0
  7. {ephys_link-1.2.7 → ephys_link-1.2.8}/README.md +0 -0
  8. {ephys_link-1.2.7 → ephys_link-1.2.8}/assets/icon.ico +0 -0
  9. {ephys_link-1.2.7 → ephys_link-1.2.8}/ephys_link.spec +0 -0
  10. {ephys_link-1.2.7 → ephys_link-1.2.8}/pyproject.toml +0 -0
  11. {ephys_link-1.2.7 → ephys_link-1.2.8}/scripts/__init__.py +0 -0
  12. {ephys_link-1.2.7 → ephys_link-1.2.8}/scripts/move_tester.py +0 -0
  13. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/__init__.py +0 -0
  14. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/__main__.py +0 -0
  15. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/common.py +0 -0
  16. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/emergency_stop.py +0 -0
  17. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/gui.py +0 -0
  18. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platform_handler.py +0 -0
  19. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platform_manipulator.py +0 -0
  20. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/__init__.py +0 -0
  21. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/new_scale_handler.py +0 -0
  22. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/new_scale_manipulator.py +0 -0
  23. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/new_scale_pathfinder_handler.py +0 -0
  24. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/sensapex_handler.py +0 -0
  25. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/sensapex_manipulator.py +0 -0
  26. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/ump3_handler.py +0 -0
  27. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/ump3_manipulator.py +0 -0
  28. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/resources/CP210xManufacturing.dll +0 -0
  29. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/resources/NstMotorCtrl.dll +0 -0
  30. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/resources/SiUSBXp.dll +0 -0
  31. {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/resources/libum.dll +0 -0
  32. {ephys_link-1.2.7 → ephys_link-1.2.8}/tests/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ephys-link
3
- Version: 1.2.7
3
+ Version: 1.2.8
4
4
  Summary: A Python Socket.IO server that allows any Socket.IO-compliant application to communicate with manipulators used in electrophysiology experiments.
5
5
  Project-URL: Documentation, https://virtualbrainlab.org/ephys_link/installation_and_use.html
6
6
  Project-URL: Issues, https://github.com/VirtualBrainLab/ephys-link/issues
@@ -0,0 +1 @@
1
+ __version__ = "1.2.8"
@@ -130,7 +130,7 @@ class Server:
130
130
  :return: Version number as defined in :mod:`ephys_link.__about__`.
131
131
  :rtype: str
132
132
  """
133
- return version
133
+ return __version__
134
134
 
135
135
  async def get_manipulators(self, _) -> str:
136
136
  """Get the list of discoverable manipulators.
@@ -1 +0,0 @@
1
- __version__ = "1.2.7"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes