Skip to content

Commit

Permalink
Merge pull request #582 from bashtage/future-pandas-v2
Browse files Browse the repository at this point in the history
CI: Refine CI configs
  • Loading branch information
bashtage authored Jan 21, 2024
2 parents 4afa54a + 60f9fa1 commit facba92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions ci/azure_template_posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,15 @@ jobs:
python.version: '3.10'
FORMULAIC: 1.0.1
XXHASH: true
PYARROW: true
python311_latest:
python.version: '3.11'
XXHASH: true
PYARROW: true
python312_latest:
python.version: '3.12'
XXHASH: true
PYARROW: true
python312_copy_on_write:
python.version: '3.12'
XXHASH: true
Expand Down
6 changes: 3 additions & 3 deletions ci/install-posix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ if [[ -n ${STATSMODELS} ]]; then CMD="$CMD~=${STATSMODELS}"; fi
if [[ -n ${XARRAY} ]]; then CMD="$CMD xarray~=${XARRAY}"; fi
if [[ -n ${FORMULAIC} ]]; then CMD="$CMD formulaic~=${FORMULAIC}"; fi
if [[ -n ${XXHASH} ]]; then CMD="$CMD xxhash"; fi
if [[ -n ${PYARROW} ]]; then CMD="$CMD pyarrow"; fi
echo "$CMD"
eval "$CMD"

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

0 comments on commit facba92

Please sign in to comment.