-
Notifications
You must be signed in to change notification settings - Fork 594
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 #2163 from mikedh/feat/typeguard
Release: Start running typeguard
- Loading branch information
Showing
21 changed files
with
211 additions
and
188 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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ requires = ["setuptools >= 61.0", "wheel"] | |
[project] | ||
name = "trimesh" | ||
requires-python = ">=3.7" | ||
version = "4.1.5" | ||
version = "4.1.6" | ||
authors = [{name = "Michael Dawson-Haggerty", email = "[email protected]"}] | ||
license = {file = "LICENSE.md"} | ||
description = "Import, export, process, analyze and view triangular meshes." | ||
|
@@ -103,7 +103,8 @@ test = [ | |
"pymeshlab", | ||
"pyinstrument", | ||
"matplotlib", | ||
"ruff" | ||
"ruff", | ||
"typeguard>=4.1.2" | ||
] | ||
|
||
# requires pip >= 21.2 | ||
|
@@ -129,6 +130,7 @@ select = [ | |
"UP", # upgrade | ||
"W", # style warnings | ||
"YTT", # sys.version | ||
"ISC002" | ||
] | ||
|
||
ignore = [ | ||
|
@@ -140,6 +142,9 @@ ignore = [ | |
"B905", # zip() without an explicit strict= parameter | ||
] | ||
|
||
# don't allow implicit string concatenation | ||
flake8-implicit-str-concat = {"allow-multiline" = false} | ||
|
||
[tool.codespell] | ||
skip = "*.js*,./docs/built/*,./docs/generate/*,./models*,*.toml" | ||
ignore-words-list = "nd,coo,whats,bu,childs,mis,filetests" |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.