Skip to content

Commit

Permalink
Switch to Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tsbinns committed Aug 20, 2024
1 parent 5f2a38d commit cf0d738
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# Linux
job:
timeout-minutes: 90
name: 'py3.9'
name: 'py3.10'
runs-on: ubuntu-20.04
defaults:
run:
Expand All @@ -23,7 +23,7 @@ jobs:
MNE_LOGGING_LEVEL: 'warning'
MKL_NUM_THREADS: '1'
PYTHONUNBUFFERED: '1'
PYTHON_VERSION: '3.9'
PYTHON_VERSION: '3.10'
steps:
- uses: actions/checkout@v4
- uses: pyvista/setup-headless-display-action@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
include:
- os: ubuntu-latest
python-version: "3.9"
python-version: "3.10"
mne-version: mne-main
- os: ubuntu-latest
python-version: "3.12"
Expand Down
4 changes: 2 additions & 2 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Dependencies
* ``netCDF4`` (>=1.6.5)
* ``matplotlib`` (optional, for using the interactive data inspector)

We require that you use Python 3.9 or higher.
We require that you use Python 3.10 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.9 at least
# with python>=3.10 at least
conda create -n mne
conda activate mne
conda install -c conda-forge mne-connectivity
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: mne-connectivity
channels:
- conda-forge
dependencies:
- python>=3.8
- python>=3.10
- pip
- numpy
- scipy
Expand All @@ -20,6 +20,6 @@ dependencies:
- pyvista>=0.32,!=0.35.2,!=0.38.0,!=0.38.1,!=0.38.2,!=0.38.3,!=0.38.4,!=0.38.5
- pyvistaqt>=0.4
- qtpy
- mne-base>=1.3
- mne-base>=1.6
- h5netcdf
- pyside6
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ classifiers = [
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
]
Expand Down Expand Up @@ -43,7 +42,7 @@ maintainers = [
]
name = 'mne-connectivity'
readme = {content-type = "text/x-rst", file = 'README.rst'}
requires-python = '>=3.9'
requires-python = '>=3.10'

[project.optional-dependencies]
all = [
Expand Down

0 comments on commit cf0d738

Please sign in to comment.