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

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
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ci:

repos:
- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.4.2
hooks:
- id: black

Expand All @@ -27,12 +27,12 @@ repos:
]

- 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: ["--skip=*.vt*"]
Expand All @@ -45,15 +45,15 @@ repos:
files: ^femorph/.*\.py

- 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: trailing-whitespace
exclude: .*\.cdb$

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v17.0.6
rev: v18.1.8
hooks:
- id: clang-format
files: |
Expand All @@ -62,7 +62,7 @@ repos:
)$

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.27.3
rev: 0.28.6
hooks:
- id: check-github-workflows

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 stl-reader."""

from io import open as io_open
import os
import sys
Expand Down
1 change: 1 addition & 0 deletions stl_reader/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
version_info = 0, 27, 'dev0'
"""

version_info = 0, 1, "dev1"
__version__ = ".".join(map(str, version_info))
1 change: 1 addition & 0 deletions stl_reader/reader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Read a STL file using a wrapper of https://github.com/aki5/libstl."""

import numpy as np
from stl_reader import _stlfile_wrapper

Expand Down
1 change: 1 addition & 0 deletions tests/test_reader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test stl_reader."""

import numpy as np
import pytest
import pyvista as pv
Expand Down
Loading