Skip to content

Commit

Permalink
fix: fix package name confusion (arrow <-> pyarrow)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbelak-dtml committed Oct 10, 2023
1 parent 4a83b03 commit be9d70b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion edvart/data_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pandas as pd

try:
import pyarrow # pylint: disable=unused-import
import arrow # pylint: disable=unused-import
except ImportError:
PYARROW_PANDAS_BACKEND_AVAILABLE = False
else:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pyarrow = { version = "^13.0.0", optional = true }
[tool.poetry.extras]
umap = ["umap-learn", "numba"]
arrow = ["pyarrow"]
all = ["umap-learn", "numba", "arrow"]
all = ["umap-learn", "numba", "pyarrow"]

[tool.poetry.dev-dependencies]
pytest-cov = "^2.8"
Expand Down

0 comments on commit be9d70b

Please sign in to comment.