bump version and release

This commit is contained in:
Greg Sweeney
2024-11-29 16:02:11 -05:00
parent 34a3f8bf08
commit c5351d5c82
2 changed files with 624 additions and 545 deletions

1116
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,14 +1,12 @@
[tool.poetry]
name = "kittycad"
version = "0.7.2"
version = "0.7.3"
description = "A client library for accessing KittyCAD"
authors = []
readme = "README.md"
packages = [
{include = "kittycad"},
]
packages = [{ include = "kittycad" }]
include = ["CHANGELOG.md", "kittycad/py.typed"]
[[tool.poetry.source]]
@ -69,7 +67,52 @@ line-length = 88
# Since we auto fix these, we don't want to warn about them. Since some doc strings are too long.
ignore = ["E501"]
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
fixable = [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"I",
"N",
"Q",
"S",
"T",
"W",
"ANN",
"ARG",
"BLE",
"COM",
"DJ",
"DTZ",
"EM",
"ERA",
"EXE",
"FBT",
"ICN",
"INP",
"ISC",
"NPY",
"PD",
"PGH",
"PIE",
"PL",
"PT",
"PTH",
"PYI",
"RET",
"RSE",
"RUF",
"SIM",
"SLF",
"TCH",
"TID",
"TRY",
"UP",
"YTT",
]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"