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.
- {ephys_link-1.2.7 → ephys_link-1.2.8}/PKG-INFO +1 -1
- ephys_link-1.2.8/src/ephys_link/__about__.py +1 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/server.py +1 -1
- ephys_link-1.2.7/src/ephys_link/__about__.py +0 -1
- {ephys_link-1.2.7 → ephys_link-1.2.8}/.gitignore +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/LICENSE +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/README.md +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/assets/icon.ico +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/ephys_link.spec +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/pyproject.toml +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/scripts/__init__.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/scripts/move_tester.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/__init__.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/__main__.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/common.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/emergency_stop.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/gui.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platform_handler.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platform_manipulator.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/__init__.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/new_scale_handler.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/new_scale_manipulator.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/new_scale_pathfinder_handler.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/sensapex_handler.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/sensapex_manipulator.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/ump3_handler.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/ump3_manipulator.py +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/resources/CP210xManufacturing.dll +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/resources/NstMotorCtrl.dll +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/resources/SiUSBXp.dll +0 -0
- {ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/resources/libum.dll +0 -0
- {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.
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ephys_link-1.2.7 → ephys_link-1.2.8}/src/ephys_link/platforms/new_scale_pathfinder_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|