Skip to content

Commit 7d6c599

Browse files
chore(deps): update dependency mypy to v1.17.0 (#155)
| datasource | package | from | to | | ---------- | ------- | ------ | ------ | | pypi | mypy | 1.15.0 | 1.17.0 | Co-authored-by: dreadnode-renovate-bot[bot] <184170622+dreadnode-renovate-bot[bot]@users.noreply.github.com>
1 parent ff57976 commit 7d6c599

File tree

2 files changed

+70
-57
lines changed

2 files changed

+70
-57
lines changed

poetry.lock

Lines changed: 53 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rigging"
3-
version = "3.1.1"
3+
version = "3.0.0"
44
description = "LLM Interaction Framework"
55
authors = ["Nick Landers <monoxgas@gmail.com>"]
66
license = "MIT"
@@ -17,6 +17,8 @@ pydantic-xml = "^2.11.0"
1717
loguru = "^0.7.2"
1818
litellm = "^1.67.2"
1919
pandas = "^2.2.2"
20+
eval-type-backport = "^0.2.0" # For 3.9 future annotations
21+
elasticsearch = "^8.13.2"
2022
xmltodict = "^0.13.0"
2123
colorama = "^0.4.6"
2224
boto3 = "^1.35.0"
@@ -30,7 +32,6 @@ mcp = "^1.5.0"
3032
vllm = { version = "^0.5.0", optional = true }
3133
transformers = { version = "^4.41.0", optional = true }
3234
accelerate = { version = "^0.30.1", optional = true }
33-
elasticsearch = { version = "^8.13.2", optional = true }
3435

3536
asyncssh = { version = "^2.14.2", optional = true }
3637
click = { version = "^8.1.7", optional = true }
@@ -51,7 +52,6 @@ all = [
5152
"aiodocker",
5253
"websockets",
5354
"logfire",
54-
"elasticsearch",
5555
]
5656

5757
[tool.poetry.group.dev.dependencies]
@@ -128,21 +128,20 @@ extend-exclude = [
128128
[tool.ruff.lint]
129129
select = [ "ALL" ]
130130
ignore = [
131-
"E501", # line too long (we make best effort)
132-
"TRY003", # long messages in exception classes
133-
"EM", # picky message construction for exceptions
134-
"C90", # mccabe complexity
135-
"A002", # shadowing built-in
136-
"D", # docstrings
137-
"ANN", # annotations (handled by mypy)
138-
"PLR0913", # too many arguments
139-
"ERA001", # commented out code
140-
"FIX002", # contains todo, consider fixing
141-
"TD002", # TODO
142-
"TD003", # TODO
143-
"PLR0911", # too many return statements
144-
"FBT003", # boolean positional in function call
145-
"COM812", # missing trailing comma in function call
131+
"E501", # line too long (we make best effort)
132+
"TRY003", # long messages in exception classes
133+
"EM", # picky message construction for exceptions
134+
"C90", # mccabe complexity
135+
"A002", # shadowing built-in
136+
"D", # docstrings
137+
"ANN", # annotations (handled by mypy)
138+
"PLR0913", # too many arguments
139+
"ERA001", # commented out code
140+
"FIX002", # contains todo, consider fixing
141+
"TD002", # TODO
142+
"TD003", # TODO
143+
"PLR0911", # too many return statements
144+
"FBT003", # boolean positional in function call
146145
]
147146

148147
[tool.ruff.format]

0 commit comments

Comments
 (0)