From b8b16fcb351871c8010fb71d09221ba10c3bba44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Tue, 24 Sep 2024 18:53:45 -0700 Subject: [PATCH] TMP: using pyarrows nightly wheel for python 3.13 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 62ff59f7..b44ad7fe 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,9 +58,9 @@ jobs: shell: bash run: | pip install --upgrade pip - # Temporary: for python 3.13 we need the nightly pandas wheels + # Temporary: for python 3.13 we need the nightly pyarrow wheels if [[ ${{ matrix.python-version }} == '3.13' ]] ; then - PIP_EXTRA_INDEX_URL=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pip install -U pandas pyarrow + PIP_EXTRA_INDEX_URL=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pip install --pre pyarrow fi pip install --upgrade "Sphinx${{ matrix.sphinx }}" "myst-parser${{ matrix.myst-parser }}" -e .[testing]