ephys-link 1.2.6__py3-none-any.whl → 1.2.8__py3-none-any.whl

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/__about__.py CHANGED
@@ -1 +1 @@
1
- __version__ = "1.2.6"
1
+ __version__ = "1.2.8"
ephys_link/__main__.py CHANGED
@@ -13,6 +13,7 @@ parser = ArgumentParser(
13
13
  " manipulators in electrophysiology experiments.",
14
14
  prog="python -m ephys-link",
15
15
  )
16
+ parser.add_argument("-b", "--background", dest="background", action="store_true", help="Skip configuration window.")
16
17
  parser.add_argument(
17
18
  "-i", "--ignore-updates", dest="ignore_updates", action="store_true", help="Skip (ignore) checking for updates."
18
19
  )
ephys_link/server.py CHANGED
@@ -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.
@@ -369,8 +369,13 @@ class Server:
369
369
  print(f"[UNKNOWN EVENT]:\t {data}")
370
370
  return "UNKNOWN_EVENT"
371
371
 
372
- def launch(self, platform_type: str, server_port: int, pathfinder_port: int | None = None,
373
- ignore_updates: bool = False) -> None:
372
+ def launch(
373
+ self,
374
+ platform_type: str,
375
+ server_port: int,
376
+ pathfinder_port: int | None = None,
377
+ ignore_updates: bool = False, # noqa: FBT002
378
+ ) -> None:
374
379
  """Launch the server.
375
380
 
376
381
  :param platform_type: Parsed argument for platform type.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ephys-link
3
- Version: 1.2.6
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
@@ -1,12 +1,12 @@
1
- ephys_link/__about__.py,sha256=T96A1ik-yagAsA1baogIsVoAh90SSLiZAjM43cOaxgA,23
1
+ ephys_link/__about__.py,sha256=V7bOTQtaR9Zk1leA8hDYTNou7b1t36o4U3CVE-dA_-M,23
2
2
  ephys_link/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- ephys_link/__main__.py,sha256=_JyBV3_eNUFLcPBYSXkGzJXNP5tv6a_9tZvU4CclNIE,2438
3
+ ephys_link/__main__.py,sha256=N-vdBEDSdAJw8f3Xz8Ncwk_ymimgoC1I60qh75-uDno,2556
4
4
  ephys_link/common.py,sha256=sLd3cNfyz312Kyl8X_s8QcIU0AP0-7go2mzCZ0WMghE,6306
5
5
  ephys_link/emergency_stop.py,sha256=Ngq5pqgFR4LKxb5AKwbYhItSRq87AjEZNoRi_fqr_co,2278
6
6
  ephys_link/gui.py,sha256=zt-Mpag35CSxsEc8QbBIUB7oDzIuy0BAtZGW_WGciak,5924
7
7
  ephys_link/platform_handler.py,sha256=FKNhiW24NZYmFj3SK56zzQ3j3Sefh8gaT86m5ejWgg8,20071
8
8
  ephys_link/platform_manipulator.py,sha256=AK9XTw1YzAUDhYXaZQxnfbuftBSXokeFkw-xq_n9q2Y,954
9
- ephys_link/server.py,sha256=n_53Iyom7rLvjzgY3bwIQ9ryAh3c0yIdx64Y72GUxWk,16874
9
+ ephys_link/server.py,sha256=1VJlXWTCoQ5XfMjDAXlfSa3ZyV23CR0i7P0I_qWY134,16931
10
10
  ephys_link/platforms/__init__.py,sha256=CbWkSRV0ERpUjcqNNslmf-YHSZpEyKJBDjOsV6_mhak,130
11
11
  ephys_link/platforms/new_scale_handler.py,sha256=5Mson5BtHmhiqUHZxuodjN6ZMcOZTUa42MC0X4BZAms,5004
12
12
  ephys_link/platforms/new_scale_manipulator.py,sha256=N3KJlog4ODlT4L-ZZgp2PnltF6jNOP8oOn4efc0QHYk,12004
@@ -19,8 +19,8 @@ ephys_link/resources/CP210xManufacturing.dll,sha256=aM9k_XABjkq0TOMiIw8HeteB40zq
19
19
  ephys_link/resources/NstMotorCtrl.dll,sha256=Xtpr3vBcxhcsOUGvgVEwYtGPvKEqDctIUGCK36GfU2Q,155136
20
20
  ephys_link/resources/SiUSBXp.dll,sha256=187zlclZNNezCkU1o1CbICRAmKWJxbh8ahP6L6wo-_Y,469752
21
21
  ephys_link/resources/libum.dll,sha256=YaD4dwiSNohx-XxHjx2eQWPOBEVvUIXARvx37e_yqNw,316316
22
- ephys_link-1.2.6.dist-info/METADATA,sha256=se8iYMXWF-8V7OvoBziiI7Tb0lbWFvSXJyvrhdf4IGI,7820
23
- ephys_link-1.2.6.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
24
- ephys_link-1.2.6.dist-info/entry_points.txt,sha256=o8wV3AdnJ9o47vg9ymKxPNVq9pMdPq8UZHE_iyAJx-k,124
25
- ephys_link-1.2.6.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
26
- ephys_link-1.2.6.dist-info/RECORD,,
22
+ ephys_link-1.2.8.dist-info/METADATA,sha256=KMb56__4nd332Pu1zrKVOXX2FlvBV1BdTKLIuGYrdcs,7820
23
+ ephys_link-1.2.8.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
24
+ ephys_link-1.2.8.dist-info/entry_points.txt,sha256=o8wV3AdnJ9o47vg9ymKxPNVq9pMdPq8UZHE_iyAJx-k,124
25
+ ephys_link-1.2.8.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
26
+ ephys_link-1.2.8.dist-info/RECORD,,