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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: check-yaml
- id: check-toml
Expand All @@ -13,7 +13,7 @@ repos:
- id: check-added-large-files
exclude: example/
- repo: https://github.com/psf/black.git
rev: 23.1.0
rev: 24.8.0
hooks:
- id: black
# - repo: https://github.com/asottile/blacken-docs
Expand All @@ -22,19 +22,19 @@ repos:
# - id: blacken-docs
# additional_dependencies: [black==21.12b0]
- repo: https://github.com/PyCQA/isort.git
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
additional_dependencies: [toml==0.10.2]
- repo: https://github.com/PyCQA/flake8.git
rev: 6.0.0
rev: 7.1.1
hooks:
- id: flake8
additional_dependencies: [flake8-docstrings]
entry: flake8 --docstring-convention google --max-doc-length 100 --max-line-length 88 --ignore E203,W503,W605
exclude: example/
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.0.0
rev: v1.11.2
hooks:
- id: mypy
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions example/example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Example for the use of Pandas2TensorBoard."""

import seaborn as sns
import tensorboard

Expand Down
1 change: 1 addition & 0 deletions pandas2tensorboard/pandas2tensorboard.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Transforms pandas dataframes into TensorBoard compatible summaries."""

try:
import modin.pandas as pd

Expand Down
1 change: 1 addition & 0 deletions pandas2tensorboard/test/test_transformer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test of the Pandas2TensorBoard."""

import seaborn as sns

from pandas2tensorboard import pandas2tensorboard as p2t
Expand Down
Loading