Skip to content

Commit 58aa28b

Browse files
authored
Ugprade liblsl to 1.17.4 (#497)
1 parent 4781751 commit 58aa28b

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ keywords = [
8585
'python',
8686
'real-time',
8787
]
88-
license = {file = 'LICENSE'}
88+
license = "BSD-3-Clause"
89+
license-files = ["LICENSE"]
8990
maintainers = [
9091
{email = 'mathieu.scheltienne@gmail.com', name = 'Mathieu Scheltienne'},
9192
]

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def run(self):
4444
]
4545
if platform.system() == "Darwin":
4646
args.append("-DCMAKE_OSX_DEPLOYMENT_TARGET=11")
47+
args.append("-DLSL_FRAMEWORK=OFF")
4748
elif platform.system() == "Windows":
4849
args.extend(["-T", "v142,host=x64"]) # use VS2019 toolset
4950
unit_tests = os.environ.get("MNE_LSL_LIBLSL_BUILD_UNITTESTS")

src/liblsl

Submodule liblsl updated 766 files

tests/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ def pytest_configure(config: pytest.Config) -> None:
7070
ignore:'mode' parameter is deprecated.*:DeprecationWarning
7171
# tkinter
7272
ignore:Exception ignored in.*__del__.*:pytest.PytestUnraisableExceptionWarning
73+
# NumPy deprecation hitting MNE-Python: github.com/mne-tools/mne-python/pull/13585
74+
ignore:Setting the shape on a NumPy array has been deprecated.*:DeprecationWarning
7375
"""
7476
for warning_line in warning_lines.split("\n"):
7577
warning_line = warning_line.strip()

0 commit comments

Comments
 (0)