File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -236,9 +236,14 @@ jobs:
236
236
237
237
- name : Install the nightly dependencies
238
238
# Only install the nightly dependencies during the scheduled event
239
- if : ${{ github.event_name == 'schedule' && matrix.name-suffix != '(Minimum Versions)' }}
239
+ if : |
240
+ github.event_name == 'schedule' &&
241
+ matrix.name-suffix != '(Minimum Versions)'
240
242
run : |
241
- python -m pip install -i https://pypi.anaconda.org/scipy-wheels-nightly/simple --upgrade --only-binary=:all: numpy pandas
243
+ python -m pip install pytz # Must be installed for Pandas.
244
+ python -m pip install \
245
+ --index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple \
246
+ --upgrade --only-binary=:all: numpy pandas
242
247
243
248
- name : Install Matplotlib
244
249
run : |
You can’t perform that action at this time.
0 commit comments