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 mne_bids version #586

Merged
merged 25 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d017c00
Updating mne_bids version
brunaafl Apr 29, 2024
4720506
Merge branch 'develop' into fix_bids
bruAristimunha Apr 30, 2024
1462c77
Accepting mne 1.7
brunaafl Apr 30, 2024
092377a
Updating whats new file
brunaafl Apr 30, 2024
768df28
Merge branch 'develop' into fix_bids
bruAristimunha May 2, 2024
7dfddb7
Enforce moabb 1.7
brunaafl May 3, 2024
0558baf
Enforce moabb 1.7
brunaafl May 8, 2024
4f2df9e
Merge branch 'develop' into fix_bids
bruAristimunha May 17, 2024
9c26b63
Adding edfio as a dependency
brunaafl May 17, 2024
8e8a110
Merge branch 'develop' into fix_bids
bruAristimunha May 27, 2024
6430dde
Update pyproject.toml
brunaafl May 27, 2024
1035a93
Update pyproject.toml
bruAristimunha May 27, 2024
94c0f6d
Updating versions: keras, scikeras, tensorflow, h5py
brunaafl May 27, 2024
92c3cea
Updating versions: keras, scikeras, tensorflow, h5py
brunaafl May 27, 2024
c9c838b
Defining tensorflow-io-gcs-filesystem version
brunaafl May 27, 2024
ea1ac0e
Defining tensorflow-io-gcs-filesystem version
brunaafl May 27, 2024
ae644ac
Updating to Keras 3 optimizers
brunaafl May 28, 2024
74e9c81
Updating code Keras3
brunaafl May 28, 2024
b229a72
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 28, 2024
df2e4ba
Updating code Keras3
brunaafl May 28, 2024
458cbff
Merge remote-tracking branch 'origin/fix_bids' into fix_bids
brunaafl May 28, 2024
c10ec6a
Updating to Keras 3 functions
brunaafl May 29, 2024
12b3e3c
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] May 29, 2024
94c1dbf
Merge branch 'develop' into fix_bids
bruAristimunha May 29, 2024
ea62ae6
Merge branch 'develop' into fix_bids
bruAristimunha May 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/source/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Bugs
- Fix number of sessions in doc of :class:`moabb.datasets.Sosulski2019` (:gh:`565` by `Pierre Guetschel`_)
- Fix `code` column of :class:`moabb.datasets.CastillosCVEP100` and :class:`moabb.datasets.CastillosCVEP100` (:gh:`567` by `Pierre Guetschel`_)
- MAINT updating the packages pre-release (:gh:`578` by `Bruno Aristimunha`_)
- Fix mne_bids version incompatibility with mne (:gh:`586` by `Bruna Lopes`_)
- Updating the parameters of the SSVEP_TRCA method (:gh:`589` by `Bruno Aristimunha`_)
- Fix and updating the parameters for the benchmark function (:gh:`588` by `Bruno Aristimunha`_)

Expand Down Expand Up @@ -448,4 +449,5 @@ API changes
.. _Jordy Thielen: https://github.com/thijor
.. _Sebastien Velut: https://github.com/swetbear
.. _Brian Irvine: https://github.com/brianjohannes
.. _Bruna Lopes: https://github.com/brunaafl
.. _Yash Chauhan: https://github.com/jiggychauhi
44 changes: 29 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ license = "BSD-3-Clause"
python = ">=3.9, <3.12"
brunaafl marked this conversation as resolved.
Show resolved Hide resolved
numpy = "^1.22"
scipy = "^1.9.3"
mne = "<=1.6.1"
mne = "^1.7.0"
pandas = "^1.5.2"
h5py = "<=3.8.0"
scikit-learn = "^1.2.0"
Expand All @@ -30,8 +30,9 @@ tqdm = "^4.64.1"
coverage = "^7.0.1"
memory-profiler = "^0.61.0"
edflib-python = "^1.0.6"
edfio = "^0.4.2"
pytest = "^7.4.0"
mne-bids = "^0.13"
mne-bids = "^0.14"

# Optional dependencies for carbon emission
codecarbon = { version = "^2.1.4", optional = true }
Expand Down