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

[DOC] Update install.rst to reflect pyproject.toml #180

Merged
merged 3 commits into from
Apr 21, 2024
Merged
Changes from 1 commit
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
18 changes: 9 additions & 9 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ Installation
Dependencies
------------

* ``mne`` (>=0.23)
* ``numpy`` (>=1.14)
* ``scipy`` (>=1.5.0 for certain operations with EEGLAB data)
* ``xarray`` (>=0.18)
* ``joblib`` (>=1.0.0)
* ``scikit-learn`` (>=0.24.2)
* ``pandas`` (>=0.23.4, optional, for generating event statistics)
* ``mne`` (>=1.6)
* ``numpy`` (>=1.21)
* ``scipy`` (>=1.4.0)
* ``xarray`` (>=2023.11.0)
* ``joblib`` (>=1.0.0, optional)
* ``pandas`` (>=1.3.2)
* ``netCDF4`` (>=1.6.5)
* ``matplotlib`` (optional, for using the interactive data inspector)

We require that you use Python 3.7 or higher.
We require that you use Python 3.9 or higher.
You may choose to install ``mne-connectivity`` `via pip <#Installation via pip>`_,
or conda.

Expand All @@ -27,7 +27,7 @@ simply run the following at the root of the repository:

.. code-block:: bash

# with python>=3.8 at least
# with python>=3.9 at least
conda create -n mne
conda activate mne
conda install -c conda-forge mne-connectivity
Expand Down
Loading