Skip to content

Commit

Permalink
Drop the feather-format test dependency (#879)
Browse files Browse the repository at this point in the history
It is just a wrapper for pyarrow.feather, which we can use directly.
  • Loading branch information
musicinmybrain authored Nov 6, 2023
1 parent b6a285b commit 383d352
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ tests-deser = [
"xlrd",
"openpyxl",
"odfpy",
"feather-format",
"pyarrow",
]
tests-examples = [
Expand Down Expand Up @@ -185,7 +184,6 @@ name."^(?!pypy).*".dependencies = [
"xlrd",
"openpyxl",
"odfpy",
"feather-format",
"pyarrow",
"cloudpickle",
"nest_asyncio",
Expand Down
4 changes: 2 additions & 2 deletions tests/testfiledeserialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
xlsxm = None

try:
import feather
import pyarrow.feather as feather
except:
feather = None

Expand All @@ -71,7 +71,7 @@
xlsxm_skip = skipIf(xlsxm is None, "openpyxl is not available")
ods_skip = skipIf(ods is None, "odfpy is not available")
xls_skip = skipIf(xls is None, "xlrd is not available")
feather_skip = skipIf(feather is None, "feather-format is not available")
feather_skip = skipIf(feather is None, "pyarrow.feather is not available")
parquet_skip = skipIf(parquet is None, "fastparquet and pyarrow are not available")
hdf5_skip = skipIf(hdf5 is None, "pytables is not available")

Expand Down

0 comments on commit 383d352

Please sign in to comment.