Skip to content

Commit

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

updates:
- [github.com/PyCQA/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2)
- [github.com/psf/black: 23.3.0 → 24.2.0](psf/black@23.3.0...24.2.0)
- [github.com/pre-commit/pre-commit-hooks.git: v4.4.0 → v4.5.0](https://github.com/pre-commit/pre-commit-hooks.git/compare/v4.4.0...v4.5.0)
- [github.com/pycqa/flake8.git: 6.0.0 → 7.0.0](https://github.com/pycqa/flake8.git/compare/6.0.0...7.0.0)
- [github.com/adrienverge/yamllint.git: v1.32.0 → v1.35.1](https://github.com/adrienverge/yamllint.git/compare/v1.32.0...v1.35.1)
- [github.com/pre-commit/mirrors-mypy: v1.3.0 → v1.8.0](pre-commit/mirrors-mypy@v1.3.0...v1.8.0)
- [github.com/PyCQA/pylint: v3.0.0a6 → v3.0.3](pylint-dev/pylint@v3.0.0a6...v3.0.3)

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

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

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] committed Mar 4, 2024
1 parent 1681e02 commit b5755c7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ exclude: |
)
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 24.2.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v4.4.0
rev: v4.5.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -25,7 +25,7 @@ repos:
- id: debug-statements
language_version: python3
- repo: https://github.com/pycqa/flake8.git
rev: 6.0.0
rev: 7.0.0
hooks:
- id: flake8
additional_dependencies:
Expand All @@ -35,14 +35,14 @@ repos:
- pydocstyle>=5.1.1
language_version: python3
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.32.0
rev: v1.35.1
hooks:
- id: yamllint
files: \.(yaml|yml)$
types: [file, yaml]
entry: yamllint --strict
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.3.0
rev: v1.8.0
hooks:
- id: mypy
# empty args needed in order to match mypy cli behavior
Expand All @@ -53,7 +53,7 @@ repos:
- pytest>=6.1.2
- enrich>=1.2.5
- repo: https://github.com/PyCQA/pylint
rev: v3.0.0a6
rev: v3.1.0
hooks:
- id: pylint
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions src/subprocess_tee/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""tee like run implementation."""

import asyncio
import os
import platform
Expand Down
1 change: 1 addition & 0 deletions test/test_func.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functional tests for subprocess-tee library."""

import subprocess


Expand Down
1 change: 1 addition & 0 deletions test/test_rich.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for rich module."""

import sys

import pytest
Expand Down
1 change: 1 addition & 0 deletions test/test_unit.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Unittests."""

import subprocess
import sys
from typing import Dict
Expand Down

0 comments on commit b5755c7

Please sign in to comment.