Skip to content

Commit

Permalink
chore: 🤖 upgrade pyarrow (to use filesystem)
Browse files Browse the repository at this point in the history
also list all the modules to ignore for mypy at the same time. thanks
@andreasoria
#875 (comment)
  • Loading branch information
severo committed Mar 1, 2023
1 parent ac3d7a2 commit 7184486
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 33 deletions.
54 changes: 27 additions & 27 deletions services/api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions services/api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ environs = "^9.5.0"
hffs = {git = "https://github.com/huggingface/hffs.git"}
jsonschema = "^4.17.0"
libcommon = {path = "../../libs/libcommon", develop = true}
pyarrow = "^10.0.1"
pyarrow = "^11.0.0"
python = "3.9.15"
requests = "^2.28.2"
starlette = "^0.25.0"
Expand Down Expand Up @@ -59,9 +59,9 @@ strict = true


[[tool.mypy.overrides]]
module = "hffs.*"
ignore_missing_imports = true

[[tool.mypy.overrides]]
module = "pyarrow.*"
module = [
"hffs.*",
"pyarrow.*",
"tqdm.*"
]
ignore_missing_imports = true

0 comments on commit 7184486

Please sign in to comment.