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 6 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
22 changes: 12 additions & 10 deletions recipes/mne-python_1.2/construct.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.2.3_0
version: 1.2.3_1
name: MNE-Python
company: MNE-Python Developers
# When the version above changes to a new major/minor, it needs to be updated
Expand All @@ -18,17 +18,17 @@ initialize_by_default: False
register_python_default: False

# default_prefix will be ignored by macOS .pkg installer!
default_prefix: ${HOME}/mne-python/1.2.3_0 # [linux]
default_prefix: "%USERPROFILE%\\mne-python\\1.2.3_0" # [win]
default_prefix_domain_user: "%LOCALAPPDATA%\\mne-python\\1.2.3_0" # [win]
default_prefix_all_users: "%ALLUSERSPROFILE%\\mne-python\\1.2.3_0" # [win]
default_prefix: ${HOME}/mne-python/1.2.3_1 # [linux]
default_prefix: "%USERPROFILE%\\mne-python\\1.2.3_1" # [win]
default_prefix_domain_user: "%LOCALAPPDATA%\\mne-python\\1.2.3_1" # [win]
default_prefix_all_users: "%ALLUSERSPROFILE%\\mne-python\\1.2.3_1" # [win]

uninstall_name: MNE-Python ${VERSION} (Python ${PYVERSION})

installer_filename: MNE-Python-1.2.3_0-macOS_Intel.pkg # [osx and not arm64]
installer_filename: MNE-Python-1.2.3_0-macOS_M1.pkg # [osx and arm64]
installer_filename: MNE-Python-1.2.3_0-Windows.exe # [win]
installer_filename: MNE-Python-1.2.3_0-Linux.sh # [linux]
installer_filename: MNE-Python-1.2.3_1-macOS_Intel.pkg # [osx and not arm64]
installer_filename: MNE-Python-1.2.3_1-macOS_M1.pkg # [osx and arm64]
installer_filename: MNE-Python-1.2.3_1-Windows.exe # [win]
installer_filename: MNE-Python-1.2.3_1-Linux.sh # [linux]

post_install: ../../assets/post_install_macOS.sh # [osx]
post_install: ../../assets/post_install_linux.sh # [linux]
Expand Down Expand Up @@ -74,6 +74,8 @@ specs:
- mne-ari =0.1.1
- mne-kit-gui =1.0.1
- mne-icalabel =0.4 # [not win]
- mnelab =0.8.5 # [not arm64] # https://github.com/conda-forge/pyside2-feedstock/issues/159
- pyside6 =6.4.1 # [not arm64] # For MNELAB. Without this pinning, 6.4.0 might get installed (why?!)
- autoreject =0.4.0
- pyprep =0.4.2
- openmeeg =2.5.5
Expand Down Expand Up @@ -137,4 +139,4 @@ condarc:
- conda-forge
channel_priority: strict
allow_other_channels: False
env_prompt: "(mne-1.2.3_0) "
env_prompt: "(mne-1.2.3_1) "
2 changes: 2 additions & 0 deletions tests/test_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
import mne_microstates
import mne_ari
import mne_kit_gui
if not(platform.system() == 'Darwin' and platform.processor() == 'arm'):
import mnelab
if platform.system() != 'Windows':
import mne_icalabel
import autoreject
Expand Down