Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#75)
Browse files Browse the repository at this point in the history
updates:
- [github.com/psf/black: 23.12.1 → 24.10.0](psf/black@23.12.1...24.10.0)
- [github.com/PyCQA/flake8: 6.1.0 → 7.1.1](PyCQA/flake8@6.1.0...7.1.1)
- [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](codespell-project/codespell@v2.2.6...v2.3.0)
- [github.com/pre-commit/pre-commit-hooks: v4.5.0 → v5.0.0](pre-commit/pre-commit-hooks@v4.5.0...v5.0.0)
- [github.com/python-jsonschema/check-jsonschema: 0.27.3 → 0.29.3](python-jsonschema/check-jsonschema@0.27.3...0.29.3)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Oct 7, 2024
1 parent e6ae342 commit d4e14d5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
- id: isort

- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.10.0
hooks:
- id: black
args:
Expand All @@ -26,12 +26,12 @@ repos:
exclude: pyvista/plotting/charts.py

- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.1.1
hooks:
- id: flake8

- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
args: ["--toml", "pyproject.toml"]
Expand All @@ -45,14 +45,14 @@ repos:
exclude: "examples/"

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v5.0.0
hooks:
- id: check-merge-conflict
- id: debug-statements
- id: no-commit-to-branch
args: [--branch, main]

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.27.3
rev: 0.29.3
hooks:
- id: check-github-workflows
1 change: 1 addition & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Configuration file for the Sphinx documentation builder."""

#
# This file does only contain a selection of the most common options. For a
# full list see the documentation:
Expand Down
1 change: 1 addition & 0 deletions tests/test_background_mesh.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the mesh resizing feature of tetgen with sizing function."""

from pathlib import Path
import tempfile

Expand Down
1 change: 1 addition & 0 deletions tetgen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tetgen module."""

from tetgen import _tetgen
from tetgen._version import __version__
from tetgen.pytetgen import TetGen
1 change: 1 addition & 0 deletions tetgen/pytetgen.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Python module to interface with wrapped TetGen C++ code."""

import ctypes
import logging

Expand Down

0 comments on commit d4e14d5

Please sign in to comment.