CI: Various version bumps; sync with main repo

This commit is contained in:
Thaddeus Crews
2025-04-26 12:23:07 -05:00
parent 08fd033a9e
commit 64cdf089d9
13 changed files with 272 additions and 231 deletions

View File

@@ -5,16 +5,16 @@ ignore_missing_imports = true
namespace_packages = true
no_implicit_optional = true
pretty = true
scripts_are_modules = true
show_column_numbers = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
python_version = "3.8"
[tool.ruff]
extend-include = ["SConstruct"]
extend-include = ["*SConstruct"]
line-length = 120
target-version = "py37"
target-version = "py38"
[tool.ruff.lint]
extend-select = [
@@ -27,32 +27,32 @@ extend-select = [
]
[tool.codespell]
enable-colors = ""
write-changes = ""
check-hidden = ""
enable-colors = true
write-changes = true
check-hidden = true
quiet-level = 3
builtin = "clear,rare,en-GB_to_en-US"
ignore-words-list = """\
breaked,
cancelled,
checkin,
curvelinear,
doubleclick,
expct,
findn,
gird,
hel,
inout,
labelin,
lod,
mis,
nd,
numer,
ot,
outin,
requestor,
te,
textin,
thirdparty,
vai
"""
builtin = ["clear", "rare", "en-GB_to_en-US"]
ignore-words-list = [
"breaked",
"cancelled",
"checkin",
"curvelinear",
"doubleclick",
"expct",
"findn",
"gird",
"hel",
"inout",
"labelin",
"lod",
"mis",
"nd",
"numer",
"ot",
"outin",
"requestor",
"te",
"textin",
"thirdparty",
"vai",
]