File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 44### New features
55* Add ` DaskBackend ` to support using einops functions on Dask backed DataArrays {pull}` 14 `
66
7+ ### Maintenance and fixes
8+ * Update requirements following [ NEP 29] ( https://numpy.org/neps/nep-0029-deprecation_policy.html )
9+ and [ SPEC 0] ( https://scientific-python.org/specs/spec-0000/ ) {pull}` 19 `
10+
711### Documentation
812* Add Dask support guide {pull}` 14 `
913* Add references to xhistogram and xrft in docs {pull}` 20 `
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
55[project ]
66name = " xarray-einstats"
77readme = " README.md"
8- requires-python = " >=3.7 "
8+ requires-python = " >=3.8 "
99license = {file = " LICENSE" }
1010authors = [
1111 {name = " ArviZ team" , email = " arviz.devs@gmail.com" }
@@ -19,16 +19,15 @@ classifiers = [
1919 " Operating System :: OS Independent" ,
2020 " Programming Language :: Python" ,
2121 " Programming Language :: Python :: 3" ,
22- " Programming Language :: Python :: 3.7" ,
2322 " Programming Language :: Python :: 3.8" ,
2423 " Programming Language :: Python :: 3.9" ,
2524 " Programming Language :: Python :: 3.10" ,
2625]
2726dynamic = [" version" , " description" ]
2827dependencies = [
29- " numpy>=1.21 " ,
30- " scipy" ,
31- " xarray>=0.20 " ,
28+ " numpy>=1.19 " ,
29+ " scipy>=1.5 " ,
30+ " xarray>=0.16 " ,
3231]
3332
3433[tool .flit .module ]
Original file line number Diff line number Diff line change 22envlist =
33 check
44 docs
5- py37
65 py38
76 py39
87 py310
@@ -12,8 +11,6 @@ isolated_build_env = build
1211
1312[gh-actions]
1413python =
15- 3.6: py36
16- 3.7: py37
1714 3.8: py38
1815 3.9: py39, check, reformat
1916 3.10: py310
@@ -29,7 +26,6 @@ exclude_lines =
2926
3027[testenv]
3128basepython =
32- py37: python3.7
3329 py38: python3.8
3430 py39: python3.9
3531 py310: python3.10
You can’t perform that action at this time.
0 commit comments