Skip to content

Commit 61ecdc8

Browse files
authored
update requirements (#19)
* update requirements * update changelog * remove 3.7 action * fix changelog
1 parent 83dc251 commit 61ecdc8

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

docs/source/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
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`

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
55
[project]
66
name = "xarray-einstats"
77
readme = "README.md"
8-
requires-python = ">=3.7"
8+
requires-python = ">=3.8"
99
license = {file = "LICENSE"}
1010
authors = [
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
]
2726
dynamic = ["version", "description"]
2827
dependencies = [
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]

tox.ini

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
envlist =
33
check
44
docs
5-
py37
65
py38
76
py39
87
py310
@@ -12,8 +11,6 @@ isolated_build_env = build
1211

1312
[gh-actions]
1413
python =
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]
3128
basepython =
32-
py37: python3.7
3329
py38: python3.8
3430
py39: python3.9
3531
py310: python3.10

0 commit comments

Comments
 (0)