Skip to content

Commit

Permalink
Reverted the fastparquet dependency replacement of pyarrow
Browse files Browse the repository at this point in the history
The dependency to fastparquet is not required anymore since pyarrow is available in python3.8 now.
  • Loading branch information
kurosch authored and sbrugman committed Mar 1, 2021
1 parent 0a1cced commit 7f2a61e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ codecov
pytest-mypy
pytest-cov
nbval
fastparquet==0.5.0
pyarrow
flake8
check-manifest>=0.41
twine>=3.1.1
Expand Down
2 changes: 1 addition & 1 deletion tests/issues/test_issue147.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_issue147(get_data_file):
"https://github.com/Teradata/kylo/raw/master/samples/sample-data/parquet/userdata2.parquet",
)

df = pd.read_parquet(str(file_name), engine="fastparquet")
df = pd.read_parquet(str(file_name), engine="pyarrow")
report = ProfileReport(df, title="PyArrow with Pandas Parquet Backend")
html = report.to_html()
assert type(html) == str
Expand Down

0 comments on commit 7f2a61e

Please sign in to comment.