1
1
[project ]
2
2
authors = [
3
- {
name =
" xarray Developers" ,
email =
" [email protected] " },
3
+ {
name =
" xarray Developers" ,
email =
" [email protected] " },
4
4
]
5
5
classifiers = [
6
6
" Development Status :: 5 - Production/Stable" ,
@@ -16,7 +16,7 @@ classifiers = [
16
16
]
17
17
description = " N-D labeled arrays and datasets in Python"
18
18
dynamic = [" version" ]
19
- license = {text = " Apache-2.0" }
19
+ license = { text = " Apache-2.0" }
20
20
name = " xarray"
21
21
readme = " README.md"
22
22
requires-python = " >=3.10"
@@ -50,7 +50,16 @@ dev = [
50
50
" sphinx_autosummary_accessors" ,
51
51
" xarray[complete]" ,
52
52
]
53
- io = [" netCDF4" , " h5netcdf" , " scipy" , ' pydap; python_version<"3.10"' , " zarr" , " fsspec" , " cftime" , " pooch" ]
53
+ io = [
54
+ " netCDF4" ,
55
+ " h5netcdf" ,
56
+ " scipy" ,
57
+ ' pydap; python_version<"3.10"' ,
58
+ " zarr" ,
59
+ " fsspec" ,
60
+ " cftime" ,
61
+ " pooch" ,
62
+ ]
54
63
etc = [" sparse" ]
55
64
parallel = [" dask[complete]" ]
56
65
viz = [" cartopy" , " matplotlib" , " nc-time-axis" , " seaborn" ]
@@ -249,7 +258,7 @@ extend-select = [
249
258
" RUF" ,
250
259
]
251
260
extend-safe-fixes = [
252
- " TID252" , # absolute imports
261
+ " TID252" , # absolute imports
253
262
]
254
263
ignore = [
255
264
" E402" , # module level import not at top of file
@@ -327,7 +336,7 @@ filterwarnings = [
327
336
" default:the `pandas.MultiIndex` object:FutureWarning:xarray.tests.test_variable" ,
328
337
" default:Using a non-tuple sequence for multidimensional indexing is deprecated:FutureWarning" ,
329
338
" default:Duplicate dimension names present:UserWarning:xarray.namedarray.core" ,
330
- " default:::xarray.tests.test_strategies" , # TODO: remove once we know how to deal with a changed signature in protocols
339
+ " default:::xarray.tests.test_strategies" , # TODO: remove once we know how to deal with a changed signature in protocols
331
340
]
332
341
333
342
log_cli_level = " INFO"
0 commit comments