Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dev = [
"ipykernel>=6.29", # For running Jupter notebooks, and pin to keep recent
"ipython>=8", # Pin to keep recent
"litellm>=1.71", # Lower pin for aiohttp transport adoption
"mypy>=1.8", # Pin for mutable-override
"mypy>=1.19", # Pin for zip default detection
"paper-qa[docling,image,ldp,memory,nemotron,pypdf-media,pymupdf,typing,zotero,local,qdrant,office]",
"prek<0.2.15", # Downpin for https://github.com/j178/prek/issues/1104
"pydantic~=2.11", # Pin for start of model_fields deprecation
Expand Down
2 changes: 1 addition & 1 deletion src/paperqa/clients/semantic_scholar.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def s2_authors_match(authors: list[str], data: dict) -> bool:
return any(
starmap(
lambda x, y: x in y or y in x,
zip(s2_authors_noinit, authors_noinit, strict=False),
zip(s2_authors_noinit, authors_noinit, strict=False), # noqa: FURB120
)
)

Expand Down
Loading
Loading