-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reverting numpy to 1.19.2, updating boto3 to 1.24.17, fixing docker b…
…uild issue and adding regression test
- Loading branch information
Nikhil Raverkar
committed
Jul 15, 2022
1 parent
f8015ce
commit 2268f2f
Showing
4 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Flask | ||
PyYAML | ||
boto3>=1.13.17 | ||
boto3>=1.24.17 | ||
coverage | ||
docker-compose | ||
flake8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
import pandas as pd | ||
|
||
|
||
def test_pandas_version(): | ||
import pandas as pd | ||
major, minor, patch = pd.__version__.split('.') | ||
assert major == '1' | ||
|
||
|
||
def test_pyarrow_to_parquet_conversion_regression_issue_106(): | ||
df = pd.DataFrame({'x': [1, 2]}) | ||
df.to_parquet('test.parquet', engine='pyarrow') |