Skip to content

Commit b1cb7a5

Browse files
committed
minor bumps
1 parent 9f79ed8 commit b1cb7a5

8 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/workflows/python_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ubuntu-latest]
22-
python-version: ["3.12"]
22+
python-version: ["3.13"]
2323
env:
2424
TZ: Europe/Berlin
2525
FORCE_COLOR: true

.github/workflows/python_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
platform: [ubuntu-latest, macos-latest, windows-latest]
21-
python-version: ["3.12"]
21+
python-version: ["3.13"]
2222
mne-version: [mne-stable]
2323

2424
include:
2525
# Test mne development version only on ubuntu
2626
- platform: ubuntu-latest
27-
python-version: "3.12"
27+
python-version: "3.13"
2828
mne-version: mne-main
2929
run-as-extra: true
3030

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fetch-tags: true
2525
- uses: actions/setup-python@v6
2626
with:
27-
python-version: '3.12'
27+
python-version: '3.13'
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v5.0.0
5+
rev: v6.0.0
66
hooks:
77
- id: trailing-whitespace
88
- id: end-of-file-fixer
@@ -14,7 +14,7 @@ repos:
1414
- id: check-docstring-first
1515

1616
- repo: https://github.com/astral-sh/ruff-pre-commit
17-
rev: v0.12.3
17+
rev: v0.14.7
1818
hooks:
1919
- id: ruff
2020
name: ruff check --fix
@@ -25,7 +25,7 @@ repos:
2525
files: ^(pyprep/|examples/|tests/)
2626

2727
- repo: https://github.com/pappasam/toml-sort
28-
rev: v0.24.2
28+
rev: v0.24.3
2929
hooks:
3030
- id: toml-sort-fix
3131
files: pyproject.toml

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2
66
build:
77
os: ubuntu-lts-latest
88
tools:
9-
python: "3.12"
9+
python: "3.13"
1010

1111
sphinx:
1212
configuration: docs/conf.py

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ for EEG data, working with `MNE-Python <https://mne.tools>`_.
4848
Installation
4949
============
5050

51-
``pyprep`` runs on Python version 3.9 or higher.
51+
``pyprep`` runs on Python version 3.10 or higher.
5252

5353
We recommend to run ``pyprep`` in a dedicated virtual environment
5454
(for example using `conda <https://docs.conda.io/en/latest/miniconda.html>`_).

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Changelog
3939
- :meth:`~pyprep.NoisyChannels.find_bad_by_nan_flat` now accepts a ``flat_threshold`` argument, by `Nabil Alibou`_ (:gh:`144`)
4040
- replaced an internal implementation of the MAD algorithm with :func:`scipy.stats.median_abs_deviation`, by `Ayush Agarwal`_ (:gh:`153`) and `Stefan Appelhoff`_ (:gh:`155`)
4141
- The :class:`~pyprep.NoisyChannels` class now accepts a `ransac` boolean argument at instantiation that is carried over to :meth:`~pyprep.NoisyChannels.find_all_bads`, by `Stefan Appelhoff`_ (:gh:`164`)
42+
- Python 3.10 or higher is now required.
4243

4344
Bug
4445
~~~

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ classifiers = [
1414
"Programming Language :: Python :: 3.10",
1515
"Programming Language :: Python :: 3.11",
1616
"Programming Language :: Python :: 3.12",
17-
"Programming Language :: Python :: 3.9",
17+
"Programming Language :: Python :: 3.13",
1818
"Programming Language :: Python",
1919
"Topic :: Scientific/Engineering",
2020
]
@@ -43,7 +43,7 @@ maintainers = [
4343
]
4444
name = "pyprep"
4545
readme = {content-type = "text/x-rst", file = "README.rst"}
46-
requires-python = ">=3.9"
46+
requires-python = ">=3.10"
4747

4848
[project.optional-dependencies]
4949
dev = ["ipykernel", "ipython", "pyprep[test,docs]"]

0 commit comments

Comments
 (0)