Skip to content

Commit ebeb9c1

Browse files
committed
update CI to use pyarrow 3.0.0
1 parent 17301d8 commit ebeb9c1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- run: pip install pyarrow --upgrade
1919
- run: HF_SCRIPTS_VERSION=master python -m pytest -sv ./tests/
2020

21-
run_dataset_script_tests_pyarrow_1:
21+
run_dataset_script_tests_pyarrow_3:
2222
working_directory: ~/datasets
2323
docker:
2424
- image: circleci/python:3.6
@@ -29,7 +29,7 @@ jobs:
2929
- run: source venv/bin/activate
3030
- run: pip install .[tests]
3131
- run: pip install -r additional-tests-requirements.txt --no-deps
32-
- run: pip install pyarrow==1.0.0
32+
- run: pip install pyarrow==3.0.0
3333
- run: HF_SCRIPTS_VERSION=master python -m pytest -sv ./tests/
3434

3535
run_dataset_script_tests_pyarrow_latest_WIN:
@@ -50,7 +50,7 @@ jobs:
5050
- run: $env:HF_SCRIPTS_VERSION="master"
5151
- run: python -m pytest -sv ./tests/
5252

53-
run_dataset_script_tests_pyarrow_1_WIN:
53+
run_dataset_script_tests_pyarrow_3_WIN:
5454
working_directory: ~/datasets
5555
executor:
5656
name: win/default
@@ -64,7 +64,7 @@ jobs:
6464
- run: "& venv/Scripts/activate.ps1"
6565
- run: pip install .[tests]
6666
- run: pip install -r additional-tests-requirements.txt --no-deps
67-
- run: pip install pyarrow==1.0.0
67+
- run: pip install pyarrow==3.0.0
6868
- run: $env:HF_SCRIPTS_VERSION="master"
6969
- run: python -m pytest -sv ./tests/
7070

@@ -116,8 +116,8 @@ workflows:
116116
jobs:
117117
- check_code_quality
118118
- run_dataset_script_tests_pyarrow_latest
119-
- run_dataset_script_tests_pyarrow_1
119+
- run_dataset_script_tests_pyarrow_3
120120
- run_dataset_script_tests_pyarrow_latest_WIN
121-
- run_dataset_script_tests_pyarrow_1_WIN
121+
- run_dataset_script_tests_pyarrow_3_WIN
122122
- build_doc
123123
- deploy_doc: *workflow_filters

0 commit comments

Comments
 (0)