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

[pre-commit.ci] pre-commit autoupdate #298

Merged
merged 9 commits into from
Oct 1, 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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.7
rev: v0.6.8
hooks:
- id: ruff
- id: ruff-format
Expand Down
22 changes: 11 additions & 11 deletions recipes/mne-python/construct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ specs:
# Python
- python =3.12.5 # allow_outdated
- pip =24.2
- conda =24.7.1
- mamba =1.5.10
- conda =24.9.0
- mamba =1.5.10 # allow_outdated, 2.0 has issues needing a libmamba that is missing
# MNE ecosystem
# TODO: ⛔️ ⛔️ ⛔️ DEV BUILDS START: CHANGE BEFORE RELEASE! ⛔️ ⛔️ ⛔️
# - mne-base =1.4dev0=*_20230503
Expand Down Expand Up @@ -90,7 +90,7 @@ specs:
- autoreject =0.4.3
- antio =0.4.0
# MRI
- fsleyes =1.12.4
- fsleyes =1.12.5
- dcm2niix =1.0.20240202
- dipy =1.9.0
# Time-frequency analysis
Expand All @@ -117,7 +117,7 @@ specs:
- python-picard =0.7
- pybv =0.7.5
- eeglabio =0.0.2.post4
- mffpy =0.9.0
- mffpy =0.10.0
- openmeeg =2.5.12
- python-neo =0.13.3
- nitime =0.11
Expand All @@ -130,7 +130,7 @@ specs:
- pyface =8.0.0=*_1
- imageio-ffmpeg =0.5.1
- pandas =2.2.3
- polars =1.7.1
- polars =1.8.2
- scipy =1.14.1
- openblas =0.3.27 # allow_outdated, scipy / numpy not updated yet
- libblas =3.9.0=*openblas
Expand All @@ -154,14 +154,14 @@ specs:
# NeuroSpin needs the following
- questionary =2.0.1
- pqdm =0.2.0
- astropy =6.1.3
- astropy =6.1.4
# Viz
# matplotilb is just matplotlib-base, tornado, and pyqt
# https://github.com/conda-forge/matplotlib-feedstock/blob/main/recipe/meta.yaml
- matplotlib-base =3.9.2
- tornado =6.4.1
- pyside6 =6.7.2=*_1
- qt6-main =6.7.2
- qt6-main =6.7.2 # allow_outdated, pyside6 not updated yet
- ipympl =0.9.4
- qtpy =2.4.1
- seaborn =0.13.2
Expand All @@ -183,8 +183,8 @@ specs:
- pytest-qt =4.4.0
- pytest-timeout =2.3.1
- pre-commit =3.8.0
- ruff =0.6.7
- uv =0.4.15
- ruff =0.6.8
- uv =0.4.17
- check-manifest =0.49.0
- codespell =2.3.0
- py-spy =0.3.14
Expand All @@ -208,9 +208,9 @@ specs:
- sphinxcontrib-bibtex =2.6.3
- sphinx-copybutton =0.5.2
- sphinxcontrib-youtube =1.4.1
- intersphinx-registry =0.2408.13
- intersphinx-registry =0.2410.1
# OS-specific
- git =2.46.1 # [win]
- git =2.46.2 # [win]
- make =4.4.1 # [win]
- pyobjc-core =10.3.1 # [osx]
- pyobjc-framework-Cocoa =10.3.1 # [osx]
Expand Down
3 changes: 2 additions & 1 deletion tests/test_dev_installed.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
# and not on conda-forge yet
and not dep.startswith("sphinxcontrib-towncrier")
and not dep.startswith("antio")
and not dep.startswith("pytest-8") # dev requires pytest >= 8.0 but stable uses < 8
and not dep.startswith("toml-sort")
and not dep.startswith("tomlkit")
and not dep == "pyarrow-15.0.0" # not tensorflow compatible
# for some reason vtk is not detected properly on Windows even though it imports
and not (platform.system() == "Windows" and dep.startswith("vtk"))
Expand Down