Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f852726 + 12f8626 commit 73394f2Copy full SHA for 73394f2
.github/workflows/tests.yml
@@ -236,9 +236,14 @@ jobs:
236
237
- name: Install the nightly dependencies
238
# Only install the nightly dependencies during the scheduled event
239
- if: ${{ github.event_name == 'schedule' && matrix.name-suffix != '(Minimum Versions)' }}
+ if: |
240
+ github.event_name == 'schedule' &&
241
+ matrix.name-suffix != '(Minimum Versions)'
242
run: |
- 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
247
248
- name: Install Matplotlib
249
0 commit comments