[CI] Address upstream deprecation

Prevent the following deprecation warning from breaking the CI run:
"Pyarrow will become a required dependency of pandas in the next major
release of pandas (pandas 3.0)"
This commit is contained in:
Ingmar Schoegl 2024-01-20 10:15:24 -06:00 committed by Ray Speth
parent 0ead71c534
commit 8d676c0cac

View File

@ -412,7 +412,7 @@ jobs:
run: python3 -m pip install -U pip setuptools wheel
- name: Install Python dependencies
run: |
python3 -m pip install numpy ruamel.yaml pandas matplotlib scipy pint graphviz
python3 -m pip install numpy ruamel.yaml pandas pyarrow matplotlib scipy pint graphviz
python3 -m pip install --pre --no-index --find-links dist cantera
- name: Run the examples
# See https://unix.stackexchange.com/a/392973 for an explanation of the -exec part