Skip to content

Commit

Permalink
[Python] Compatibility with pyarrow 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Apr 27, 2020
1 parent b884dc1 commit 1fb72bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 22 deletions.
6 changes: 4 additions & 2 deletions python/feather/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

# flake8: noqa

from feather.api import (read_dataframe, write_dataframe,
FeatherError, FeatherReader, FeatherWriter)
from pyarrow.feather import (read_feather as read_dataframe, # noqa
write_feather as write_dataframe,
FeatherError)

from feather.version import version as __version__
19 changes: 0 additions & 19 deletions python/feather/api.py

This file was deleted.

2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

MAJOR = 0
MINOR = 4
MICRO = 0
MICRO = 1
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
ISRELEASED = True

Expand Down

0 comments on commit 1fb72bc

Please sign in to comment.