Skip to content

Commit f94af1d

Browse files
🌿 Fern Regeneration -- May 9, 2025 (#64)
* SDK regeneration * Add type ignore --------- Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Co-authored-by: James Baskerville <jameswbaskerville@gmail.com>
1 parent 5535c9c commit f94af1d

File tree

408 files changed

+7512
-9137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

408 files changed

+7512
-9137
lines changed

poetry.lock

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

pyproject.toml

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "humanloop"
33

44
[tool.poetry]
55
name = "humanloop"
6-
version = "0.8.36b1"
6+
version = "0.8.36b2"
77
description = ""
88
readme = "README.md"
99
authors = []
@@ -54,8 +54,8 @@ pydantic = ">= 1.9.2"
5454
pydantic-core = "^2.18.2"
5555
typing_extensions = ">= 4.0.0"
5656

57-
[tool.poetry.dev-dependencies]
58-
mypy = "1.0.1"
57+
[tool.poetry.group.dev.dependencies]
58+
mypy = "==1.13.0"
5959
pytest = "^7.4.0"
6060
pytest-asyncio = "^0.23.5"
6161
python-dateutil = "^2.9.0"
@@ -72,7 +72,7 @@ pyarrow = "^19.0.0"
7272
pytest-retry = "^1.6.3"
7373
python-dotenv = "^1.0.1"
7474
replicate = "^1.0.3"
75-
ruff = "^0.5.6"
75+
ruff = "==0.11.5"
7676
types-jsonschema = "^4.23.0.20240813"
7777
types-protobuf = "^5.29.1.20250208"
7878

@@ -86,6 +86,26 @@ plugins = ["pydantic.mypy"]
8686
[tool.ruff]
8787
line-length = 120
8888

89+
[tool.ruff.lint]
90+
select = [
91+
"E", # pycodestyle errors
92+
"F", # pyflakes
93+
"I", # isort
94+
]
95+
ignore = [
96+
"E402", # Module level import not at top of file
97+
"E501", # Line too long
98+
"E711", # Comparison to `None` should be `cond is not None`
99+
"E712", # Avoid equality comparisons to `True`; use `if ...:` checks
100+
"E721", # Use `is` and `is not` for type comparisons, or `isinstance()` for insinstance checks
101+
"E722", # Do not use bare `except`
102+
"E731", # Do not assign a `lambda` expression, use a `def`
103+
"F821", # Undefined name
104+
"F841" # Local variable ... is assigned to but never used
105+
]
106+
107+
[tool.ruff.lint.isort]
108+
section-order = ["future", "standard-library", "third-party", "first-party"]
89109

90110
[build-system]
91111
requires = ["poetry-core"]

0 commit comments

Comments
 (0)