Skip to content

Commit

Permalink
tests: update test_pylsl for compatibility with pylsl 1.17.x
Browse files Browse the repository at this point in the history
pylsl 1.17.x removed `pylsl.version` module; we should have been
using `pylsl.__version__` from the very start...
  • Loading branch information
rokm committed Dec 16, 2024
1 parent d83c938 commit 81a7044
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_libraries.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,9 @@ def test_pylsl(pyi_builder):
pyi_builder.test_source(
"""
import pylsl
print(pylsl.version.__version__)
print(f"version: {pylsl.__version__}")
print(f"library version: {pylsl.library_version()}")
print(f"library info: {pylsl.library_info()}")
""")


Expand Down

0 comments on commit 81a7044

Please sign in to comment.