Skip to content

Commit 7bf3c75

Browse files
authored
Unpin xarray (pandas-dev#47016)
1 parent 9222cb0 commit 7bf3c75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ dependencies:
116116
- fsspec>=0.7.4 # for generic remote file operations
117117
- gcsfs>=0.6.0 # file IO when using 'gcs://...' path
118118
- sqlalchemy # pandas.read_sql, DataFrame.to_sql
119-
- xarray<0.19 # DataFrame.to_xarray
119+
- xarray # DataFrame.to_xarray
120120
- cftime # Needed for downstream xarray.CFTimeIndex test
121121
- pyreadstat # pandas.read_spss
122122
- tabulate>=0.8.3 # DataFrame.to_markdown

pandas/core/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3074,7 +3074,7 @@ class (index) object 'bird' 'bird' 'mammal' 'mammal'
30743074
30753075
>>> df_multiindex.to_xarray()
30763076
<xarray.Dataset>
3077-
Dimensions: (animal: 2, date: 2)
3077+
Dimensions: (date: 2, animal: 2)
30783078
Coordinates:
30793079
* date (date) datetime64[ns] 2018-01-01 2018-01-02
30803080
* animal (animal) object 'falcon' 'parrot'

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ aiobotocore<2.0.0
8080
fsspec>=0.7.4
8181
gcsfs>=0.6.0
8282
sqlalchemy
83-
xarray<0.19
83+
xarray
8484
cftime
8585
pyreadstat
8686
tabulate>=0.8.3

0 commit comments

Comments
 (0)