Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 1, 2024
1 parent 4c69c14 commit f96860d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
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

0 comments on commit f96860d

Please sign in to comment.