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 #462

Merged
merged 2 commits into from
Oct 8, 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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -11,15 +11,15 @@ repos:
- id: check-case-conflict
- id: check-merge-conflict
- repo: https://github.com/psf/black
rev: 23.11.0
rev: 24.10.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.13.0
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.1.1
hooks:
- id: flake8
- repo: https://github.com/pycqa/pydocstyle
Expand All @@ -33,6 +33,6 @@ repos:
- id: rst-directive-colons
- id: rst-inline-touching-normal
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
2 changes: 1 addition & 1 deletion docs/conduct.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ We as members, contributors, and leaders pledge to make participation in
our community a harassment-free experience for everyone, regardless of
age, body size, visible or invisible disability, ethnicity, sex
characteristics, gender identity and expression, level of experience,
education, socio-economic status, nationality, personal appearance,
education, socioeconomic status, nationality, personal appearance,
race, religion, or sexual identity and orientation.

We pledge to act and interact in ways that contribute to an open,
Expand Down
1 change: 1 addition & 0 deletions phys2bids/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Main init for phys2bids package."""

from ._version import get_versions

__version__ = get_versions()["version"]
Expand Down
1 change: 1 addition & 0 deletions phys2bids/bids.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""BIDS functions for phys2bids package."""

import logging
import os
from csv import reader
Expand Down
1 change: 1 addition & 0 deletions phys2bids/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utilities for phys2bids package."""

import json
import logging
import os
Expand Down
1 change: 1 addition & 0 deletions phys2bids/viz.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Visualization functions for phys2bids package."""

import logging
import os

Expand Down
Loading