We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 858c61a commit 7342b3cCopy full SHA for 7342b3c
1 file changed
.github/workflows/tests.yml
@@ -55,8 +55,13 @@ jobs:
55
allow-prereleases: true
56
cache: pip
57
- name: Install myst-nb with Sphinx ${{ matrix.sphinx }}
58
+ shell: bash
59
run: |
60
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
65
pip install --upgrade "Sphinx${{ matrix.sphinx }}" "myst-parser${{ matrix.myst-parser }}" -e .[testing]
66
67
- name: Run pytest
0 commit comments