Skip to content

Commit 975b32c

Browse files
authored
TEST-modin-project#7166: Fix HDF tests in CI (modin-project#7167)
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
1 parent 717a328 commit 975b32c

File tree

6 files changed

+7
-0
lines changed

6 files changed

+7
-0
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,8 @@ jobs:
676676
- uses: ./.github/actions/mamba-env
677677
with:
678678
environment-file: environment-dev.yml
679+
- name: Install HDF5
680+
run: sudo apt update && sudo apt install -y libhdf5-dev
679681
- run: python -m pytest -n 2 modin/tests/pandas/dataframe/test_map_metadata.py
680682
- run: python -m pytest -n 2 modin/tests/pandas/test_series.py
681683
# Do not add parallelism (`-n` argument) here - it will cause mock S3 service to fail.

environment-dev.yml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ dependencies:
3131
- sqlalchemy>=2.0.0
3232
- pandas-gbq>=0.19.0
3333
- pytables>=3.8.0
34+
- c-blosc2<=2.14.1
3435
# pymssql==2.2.8 broken: https://github.com/modin-project/modin/issues/6429
3536
- pymssql>=2.1.5,!=2.2.8
3637
- psycopg2>=2.9.6

requirements/env_hdk.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ dependencies:
2121
- matplotlib>=3.6.3
2222
- xarray>=2022.12.0
2323
- pytables>=3.8.0
24+
- c-blosc2<=2.14.1
2425
- fastparquet>=2022.12.0
2526
# pandas isn't compatible with numexpr=2.8.5: https://github.com/modin-project/modin/issues/6469
2627
- numexpr<2.8.5

requirements/env_unidist_linux.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ dependencies:
2626
- sqlalchemy>=2.0.0
2727
- pandas-gbq>=0.19.0
2828
- pytables>=3.8.0
29+
- c-blosc2<=2.14.1
2930
# pymssql==2.2.8 broken: https://github.com/modin-project/modin/issues/6429
3031
- pymssql>=2.1.5,!=2.2.8
3132
- psycopg2>=2.9.6

requirements/env_unidist_win.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ dependencies:
2626
- sqlalchemy>=2.0.0
2727
- pandas-gbq>=0.19.0
2828
- pytables>=3.8.0
29+
- c-blosc2<=2.14.1
2930
# pymssql==2.2.8 broken: https://github.com/modin-project/modin/issues/6429
3031
- pymssql>=2.1.5,!=2.2.8
3132
- psycopg2>=2.9.6

requirements/requirements-no-engine.yml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ dependencies:
2323
- sqlalchemy>=2.0.0
2424
- pandas-gbq>=0.19.0
2525
- pytables>=3.8.0
26+
- c-blosc2<=2.14.1
2627
- tqdm>=4.60.0
2728
# pandas isn't compatible with numexpr=2.8.5: https://github.com/modin-project/modin/issues/6469
2829
- numexpr<2.8.5

0 commit comments

Comments
 (0)