Skip to content

Don't check pyarrow version anymore, no superclass #880

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 8, 2022
Merged
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
25 changes: 2 additions & 23 deletions fsspec/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import threading
import warnings
import weakref
from distutils.version import LooseVersion
from errno import ESPIPE
from glob import has_magic
from hashlib import sha256
Expand All @@ -13,14 +12,7 @@
from .config import apply_config, conf
from .dircache import DirCache
from .transaction import Transaction
from .utils import (
_unstrip_protocol,
get_package_version_without_import,
other_paths,
read_block,
stringify_path,
tokenize,
)
from .utils import _unstrip_protocol, other_paths, read_block, stringify_path, tokenize

logger = logging.getLogger("fsspec")

Expand Down Expand Up @@ -88,20 +80,7 @@ def __call__(cls, *args, **kwargs):
return obj


pa_version = get_package_version_without_import("pyarrow")
if pa_version and LooseVersion(pa_version) < LooseVersion("2.0"):
try:
import pyarrow as pa

up = pa.filesystem.DaskFileSystem
except ImportError: # pragma: no cover
# pyarrow exists but doesn't import for some reason
up = object
else: # pragma: no cover
up = object


class AbstractFileSystem(up, metaclass=_Cached):
class AbstractFileSystem(metaclass=_Cached):
"""
An abstract super-class for pythonic file-systems

Expand Down