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

Closed
wants to merge 2 commits into from
Closed
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 @@ -12,7 +12,7 @@ repos:
- id: isort

- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.4.2
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.0
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: v4.6.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.28.6
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 examples/cow.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

Tetrahedralize a cow mesh.
"""

# sphinx_gallery_thumbnail_number = 3
import numpy as np
import pyvista as pv
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Setup for tetgen."""

from io import open as io_open
import os

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
Loading