Skip to content

Commit 2b92d28

Browse files
authored
general maintenance (#49)
* general maintenance * use dict literals * update changelog
1 parent a3de648 commit 2b92d28

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10"]
14+
python-version: ["3.9", "3.10", "3.11"]
1515
fail-fast: false
1616
steps:
1717
- uses: actions/checkout@v3

.pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ disable=missing-docstring,
6969
fixme
7070

7171

72+
7273
# Enable the message, report, category or checker with the given id(s). You can
7374
# either give multiple identifier separated by comma (,) or put this option
7475
# multiple time (only on the command line, not in the configuration file where

docs/source/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* {func}`.ecdf` now returns a DataArray to be compatible with {meth}`~xarray.Dataset.map` {pull}`47`
66

77
### Maintenance and fixes
8+
* Update dependencies and follow new pylint recommendations {pull}`49`
89

910
### Documentation
1011

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
66
name = "xarray-einstats"
77
description = "Stats, linear algebra and einops for xarray"
88
readme = "README.md"
9-
requires-python = ">=3.8"
9+
requires-python = ">=3.9"
1010
license = {file = "LICENSE"}
1111
authors = [
1212
{name = "ArviZ team", email = "arviz.devs@gmail.com"}
@@ -20,15 +20,14 @@ classifiers = [
2020
"Operating System :: OS Independent",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.8",
2423
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
]
2827
dynamic = ["version"]
2928
dependencies = [
30-
"numpy>=1.20",
31-
"scipy>=1.6",
29+
"numpy>=1.21",
30+
"scipy>=1.7",
3231
"xarray>=2022.09.0",
3332
]
3433

tox.ini

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

1312
[gh-actions]
1413
python =
15-
3.8: py38
1614
3.9: py39
1715
3.10: py310, check, reformat
1816
3.11: py311

0 commit comments

Comments
 (0)