Skip to content

Commit

Permalink
deps(attrs): relaxed requirement to attrs (#122)
Browse files Browse the repository at this point in the history
* deps(attrs): relaxed requirement to attrs

* ignore return type
  • Loading branch information
shenxiangzhuang authored Sep 2, 2024
1 parent 0010ef4 commit 4423ef1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crowdkit/aggregation/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def converter(series: "pd.Series[Any]") -> "pd.Series[Any]":
series.name = name
return series

return attr.ib(init=False, converter=converter, on_setattr=attr.setters.convert)
return attr.ib(init=False, converter=converter, on_setattr=attr.setters.convert) # type: ignore[no-any-return]


def add_skills_to_data(
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ classifiers = [
]
requires-python = ">= 3.8"
dependencies = [
"attrs ~= 23.2",
"attrs",
"nltk",
"numpy",
"pandas >= 1.1.0",
"pyarrow",
"scikit-learn",
"tqdm",
"transformers"
"transformers",
]
dynamic = ["version"]

Expand Down

0 comments on commit 4423ef1

Please sign in to comment.