Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include MNELAB #163

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,11 @@ jobs:
popd
fi

echo "Checking whether (Py)Qt is working"
LD_DEBUG=libs python -c "from PyQt5.QtWidgets import QApplication, QWidget; app = QApplication([])"
echo "Checking whether PyQt5 is working"
QT_DEBUG_PLUGINS=1 python -c "from PyQt5.QtWidgets import QApplication, QWidget; app = QApplication([])"

echo "Checking whether PySide6 is working"
QT_DEBUG_PLUGINS=1 python -c "from PySide6.QtWidgets import QApplication, QWidget; app = QApplication([])"

echo "Checking the deployed environment variables were set correctly upon environment activation"
mamba env config vars list
Expand Down
2 changes: 1 addition & 1 deletion assets/current_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4
1.3
11 changes: 6 additions & 5 deletions recipes/mne-python_1.3/construct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,16 @@ specs:
- mne-ari =0.1.2
- mne-kit-gui =1.1.0
- mne-icalabel =0.4 # [not win]
- mnelab =0.8.6
- autoreject =0.4.1
- pyriemann =0.4
- pyprep =0.4.2
- openmeeg =2.5.5
- openmeeg =2.5.6
# Python
- python =3.10.8
- pip
- pip =23.1.1
- conda
- mamba
- mamba =1.4.2
- openblas =0.3.21
- jupyter
- jupyterlab
Expand Down Expand Up @@ -116,10 +117,10 @@ specs:
# OpenNeuro.org data access
- openneuro-py
# sleep staging
- sleepecg
- sleepecg =0.5.4
- yasa
# various biological signals (ECG, EOG, EMG, …)
- neurokit2
- neurokit2 =0.2.4
# GitHub client, https://cli.github.com
- gh
# NeuroSpin needs the following
Expand Down
1 change: 1 addition & 0 deletions tests/test_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import mne_microstates
import mne_ari
import mne_kit_gui
import mnelab
if platform.system() != 'Windows':
import mne_icalabel
import autoreject
Expand Down