File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -58,12 +58,15 @@ jobs:
58
58
python.version : ' 3.10'
59
59
FORMULAIC : 1.0.1
60
60
XXHASH : true
61
+ PYARROW : true
61
62
python311_latest :
62
63
python.version : ' 3.11'
63
64
XXHASH : true
65
+ PYARROW : true
64
66
python312_latest :
65
67
python.version : ' 3.12'
66
68
XXHASH : true
69
+ PYARROW : true
67
70
python312_copy_on_write :
68
71
python.version : ' 3.12'
69
72
XXHASH : true
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ if [[ -n ${STATSMODELS} ]]; then CMD="$CMD~=${STATSMODELS}"; fi
11
11
if [[ -n ${XARRAY} ]]; then CMD=" $CMD xarray~=${XARRAY} " ; fi
12
12
if [[ -n ${FORMULAIC} ]]; then CMD=" $CMD formulaic~=${FORMULAIC} " ; fi
13
13
if [[ -n ${XXHASH} ]]; then CMD=" $CMD xxhash" ; fi
14
+ if [[ -n ${PYARROW} ]]; then CMD=" $CMD pyarrow" ; fi
14
15
echo " $CMD "
15
16
eval " $CMD "
16
17
17
18
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
21
21
python -m pip install git+https://github.com/statsmodels/statsmodels.git --upgrade --no-build-isolation -v
22
22
fi
You can’t perform that action at this time.
0 commit comments