From be9d70b4747df048cdcd9887118911a3d9b34037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Bel=C3=A1k?= Date: Tue, 10 Oct 2023 18:22:09 +0200 Subject: [PATCH] fix: fix package name confusion (arrow <-> pyarrow) --- edvart/data_types.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/edvart/data_types.py b/edvart/data_types.py index cf51d65..d1aa803 100644 --- a/edvart/data_types.py +++ b/edvart/data_types.py @@ -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: diff --git a/pyproject.toml b/pyproject.toml index cb42c4a..cb35c05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"