File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 98
98
# https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-2346
99
99
pyside6-ver : ' !=6.5.1'
100
100
- os : macos-13 # This runner is on Intel chips.
101
+ # merge numpy and pandas install in nighties test when this runner is dropped
101
102
python-version : ' 3.10'
102
103
# https://bugreports.qt.io/projects/PYSIDE/issues/PYSIDE-2346
103
104
pyside6-ver : ' !=6.5.1'
@@ -320,7 +321,13 @@ jobs:
320
321
python -m pip install pytz tzdata # Must be installed for Pandas.
321
322
python -m pip install \
322
323
--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
+
324
331
325
332
- name : Install Matplotlib
326
333
run : |
You can’t perform that action at this time.
0 commit comments