Skip to content

Commit

Permalink
Pin pandas version to v1.0.5
Browse files Browse the repository at this point in the history
There is an issue with pandas and xarray wrt to datetime indexing
(pydata/xarray#4283), until this is fixed in
xarray we'll pin the pandas version.
  • Loading branch information
leifdenby committed Aug 4, 2020
1 parent 4afde07 commit 509adef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v2
- name: Test with pytest
run: |
pip install pytest |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ datetime
numpy
pyyaml
cdsapi
pandas
pandas<=1.0.5 # datetime indexing broken with 1.1.0, https://github.com/pydata/xarray/issues/4283
scipy
argparse
dask[array]
Expand Down

0 comments on commit 509adef

Please sign in to comment.