Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#21)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/psf/black: 23.1.0 → 24.3.0](psf/black@23.1.0...24.3.0)
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](pre-commit/pre-commit-hooks@v4.4.0...v4.5.0)
- [github.com/codespell-project/codespell: v2.2.2 → v2.2.6](codespell-project/codespell@v2.2.2...v2.2.6)
- [github.com/asottile/pyupgrade: v3.3.1 → v3.15.1](asottile/pyupgrade@v3.3.1...v3.15.1)
- [github.com/PyCQA/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2)
- [github.com/pycqa/flake8: 6.0.0 → 7.0.0](PyCQA/flake8@6.0.0...7.0.0)
- [github.com/pycqa/bandit: 1.7.4 → 1.7.8](PyCQA/bandit@1.7.4...1.7.8)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* codespell: ignore afile

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Saugat Pachhai (सौगात) <suagatchhetri@outlook.com>
  • Loading branch information
pre-commit-ci[bot] and skshetry authored Mar 25, 2024
1 parent f8472f4 commit 20d24d0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ default_language_version:
python: python3
repos:
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 24.3.0
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -24,21 +24,21 @@ repos:
- id: sort-simple-yaml
- id: trailing-whitespace
- repo: https://github.com/codespell-project/codespell
rev: v2.2.2
rev: v2.2.6
hooks:
- id: codespell
additional_dependencies: ["tomli"]
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.1
rev: v3.15.1
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 7.0.0
hooks:
- id: flake8
additional_dependencies:
Expand All @@ -47,7 +47,7 @@ repos:
- flake8-debugger==4.1.2
- flake8-string-format==0.3.0
- repo: https://github.com/pycqa/bandit
rev: 1.7.4
rev: 1.7.8
hooks:
- id: bandit
args: [-c, pyproject.toml]
Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Automation using nox."""

import glob
import os

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dummy-variables-rgx = "_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unuse
ignored-argument-names = "_.*|^ignored_|^unused_|args|kwargs"

[tool.codespell]
ignore-words-list = "fo,cachable"
ignore-words-list = "fo,cachable,afile"

[tool.bandit]
exclude_dirs = ["tests"]
Expand Down
1 change: 1 addition & 0 deletions tests/test_morefs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for `morefs` package."""

import fsspec
import pytest

Expand Down

0 comments on commit 20d24d0

Please sign in to comment.