Skip to content

Commit

Permalink
Unpin xarray (#47016)
Browse files Browse the repository at this point in the history
  • Loading branch information
djgray780 authored May 16, 2022
1 parent 9222cb0 commit 7bf3c75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ dependencies:
- fsspec>=0.7.4 # for generic remote file operations
- gcsfs>=0.6.0 # file IO when using 'gcs://...' path
- sqlalchemy # pandas.read_sql, DataFrame.to_sql
- xarray<0.19 # DataFrame.to_xarray
- xarray # DataFrame.to_xarray
- cftime # Needed for downstream xarray.CFTimeIndex test
- pyreadstat # pandas.read_spss
- tabulate>=0.8.3 # DataFrame.to_markdown
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -3074,7 +3074,7 @@ class (index) object 'bird' 'bird' 'mammal' 'mammal'
>>> df_multiindex.to_xarray()
<xarray.Dataset>
Dimensions: (animal: 2, date: 2)
Dimensions: (date: 2, animal: 2)
Coordinates:
* date (date) datetime64[ns] 2018-01-01 2018-01-02
* animal (animal) object 'falcon' 'parrot'
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ aiobotocore<2.0.0
fsspec>=0.7.4
gcsfs>=0.6.0
sqlalchemy
xarray<0.19
xarray
cftime
pyreadstat
tabulate>=0.8.3
Expand Down

0 comments on commit 7bf3c75

Please sign in to comment.