Skip to content

Commit 7342b3c

Browse files
committed
TMP: using pandas nightly wheel for python 3.13
1 parent 858c61a commit 7342b3c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,13 @@ jobs:
5555
allow-prereleases: true
5656
cache: pip
5757
- name: Install myst-nb with Sphinx ${{ matrix.sphinx }}
58+
shell: bash
5859
run: |
5960
pip install --upgrade pip
61+
# Temporary: for python 3.13 we need the nightly pandas wheels
62+
if [[ ${{ matrix.python-version }} == '3.13' ]] ; then
63+
PIP_EXTRA_INDEX_URL=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pip install -U pandas pyarrow
64+
fi
6065
pip install --upgrade "Sphinx${{ matrix.sphinx }}" "myst-parser${{ matrix.myst-parser }}" -e .[testing]
6166
6267
- name: Run pytest

0 commit comments

Comments
 (0)