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

Updating conda-incubator for arm64 mac #103

Merged
merged 3 commits into from
May 7, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/publish-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
with:
environment-file: environment.yml
activate-environment: bci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
with:
environment-file: environment.yml
activate-environment: bci
Expand All @@ -42,7 +42,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
with:
environment-file: environment.yml
activate-environment: bci
Expand Down
5 changes: 3 additions & 2 deletions examples/p300_SingleChannelERP_offline_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@

from bci_essentials.io.xdf_sources import XdfEegSource, XdfMarkerSource
from bci_essentials.erp_data import ErpData
from bci_essentials.classification.erp_single_channel_classifier import \
ErpSingleChannelClassifier
from bci_essentials.classification.erp_single_channel_classifier import (
ErpSingleChannelClassifier,
)

# Identify the file to simulate
# Filename assumes the data is within a subfolder called "data" located
Expand Down
Loading