-
Notifications
You must be signed in to change notification settings - Fork 596
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2142 from mikedh/fix/nan
Release: NaN exports + Update ruff
- Loading branch information
Showing
10 changed files
with
82 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ requires = ["setuptools >= 61.0", "wheel"] | |
[project] | ||
name = "trimesh" | ||
requires-python = ">=3.7" | ||
version = "4.1.2" | ||
version = "4.1.3" | ||
authors = [{name = "Michael Dawson-Haggerty", email = "[email protected]"}] | ||
license = {file = "LICENSE.md"} | ||
description = "Import, export, process, analyze and view triangular meshes." | ||
|
@@ -112,7 +112,12 @@ all = ["trimesh[easy,recommend,test]"] | |
|
||
[tool.ruff] | ||
target-version = "py37" | ||
line-length = 90 | ||
|
||
|
||
# See https://github.com/charliermarsh/ruff#rules for error code definitions. | ||
|
||
[tool.ruff.lint] | ||
select = [ | ||
# "ANN", # annotations | ||
"B", # bugbear | ||
|
@@ -121,7 +126,7 @@ select = [ | |
"F", # flakes | ||
"I", # import sorting | ||
"RUF100", # meta | ||
"U", # upgrade | ||
"UP", # upgrade | ||
"W", # style warnings | ||
"YTT", # sys.version | ||
] | ||
|
@@ -133,9 +138,4 @@ ignore = [ | |
"E501", # Line too long ({width} > {limit} characters) | ||
"B904", # raise ... from err | ||
"B905", # zip() without an explicit strict= parameter | ||
"ANN101", # type hint for `self` | ||
"ANN002", # type hint for *args | ||
"ANN003", # type hint for **kwargs | ||
] | ||
line-length = 90 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from . import creation | ||
from .base import VoxelGrid | ||
|
||
__all__ = ["VoxelGrid"] | ||
__all__ = ["VoxelGrid", "creation"] |