Skip to content

Commit 8a30762

Browse files
committed
CI: allow pandas install to fail on nightly test run
Pandas appears to no longer be uploading py310 on intel wheels to the nightly index. closes #29327
1 parent 8ac84ec commit 8a30762

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ jobs:
9898
# https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-2346
9999
pyside6-ver: '!=6.5.1'
100100
- os: macos-13 # This runner is on Intel chips.
101+
# merge numpy and pandas install in nighties test when this runner is dropped
101102
python-version: '3.10'
102103
# https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-2346
103104
pyside6-ver: '!=6.5.1'
@@ -320,7 +321,13 @@ jobs:
320321
python -m pip install pytz tzdata # Must be installed for Pandas.
321322
python -m pip install \
322323
--index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
323-
--upgrade --only-binary=:all: numpy pandas
324+
--upgrade --only-binary=:all: numpy
325+
# wheels for intel osx is not always available on nightly wheels index, merge this back into
326+
# the above install command when the OSX-13 (intel) runners are dropped.
327+
python -m pip install \
328+
--index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
329+
--upgrade --only-binary=:all: pandas || true
330+
324331
325332
- name: Install Matplotlib
326333
run: |

0 commit comments

Comments
 (0)