Skip to content

Commit 60f9fa1

Browse files
committed
Refine CI configs
1 parent ec14500 commit 60f9fa1

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

ci/azure_template_posix.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,15 @@ jobs:
5858
python.version: '3.10'
5959
FORMULAIC: 1.0.1
6060
XXHASH: true
61+
PYARROW: true
6162
python311_latest:
6263
python.version: '3.11'
6364
XXHASH: true
65+
PYARROW: true
6466
python312_latest:
6567
python.version: '3.12'
6668
XXHASH: true
69+
PYARROW: true
6770
python312_copy_on_write:
6871
python.version: '3.12'
6972
XXHASH: true

ci/install-posix.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ if [[ -n ${STATSMODELS} ]]; then CMD="$CMD~=${STATSMODELS}"; fi
1111
if [[ -n ${XARRAY} ]]; then CMD="$CMD xarray~=${XARRAY}"; fi
1212
if [[ -n ${FORMULAIC} ]]; then CMD="$CMD formulaic~=${FORMULAIC}"; fi
1313
if [[ -n ${XXHASH} ]]; then CMD="$CMD xxhash"; fi
14+
if [[ -n ${PYARROW} ]]; then CMD="$CMD pyarrow"; fi
1415
echo "$CMD"
1516
eval "$CMD"
1617

1718
if [ "${PIP_PRE}" = true ]; then
18-
python -m pip uninstall -y numpy pandas scipy matplotlib statsmodels
19-
python -m pip install pyarrow
20-
python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy pandas scipy matplotlib --upgrade --use-deprecated=legacy-resolver
19+
python -m pip uninstall -y numpy pandas scipy matplotlib statsmodels xarray
20+
python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy pandas scipy matplotlib xarray --upgrade --use-deprecated=legacy-resolver
2121
python -m pip install git+https://github.com/statsmodels/statsmodels.git --upgrade --no-build-isolation -v
2222
fi

0 commit comments

Comments
 (0)