Skip to content

Commit

Permalink
general maintenance (#49)
Browse files Browse the repository at this point in the history
* general maintenance

* use dict literals

* update changelog
  • Loading branch information
OriolAbril committed May 22, 2023
1 parent a3de648 commit 2b92d28
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .pylintrc
Expand Up @@ -69,6 +69,7 @@ disable=missing-docstring,
fixme



# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
Expand Down
1 change: 1 addition & 0 deletions docs/source/changelog.md
Expand Up @@ -5,6 +5,7 @@
* {func}`.ecdf` now returns a DataArray to be compatible with {meth}`~xarray.Dataset.map` {pull}`47`

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

### Documentation

Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Expand Up @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
name = "xarray-einstats"
description = "Stats, linear algebra and einops for xarray"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "ArviZ team", email = "arviz.devs@gmail.com"}
Expand All @@ -20,15 +20,14 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
dependencies = [
"numpy>=1.20",
"scipy>=1.6",
"numpy>=1.21",
"scipy>=1.7",
"xarray>=2022.09.0",
]

Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Expand Up @@ -2,7 +2,6 @@
envlist =
check
docs
py38
py39
py310
py311
Expand All @@ -12,7 +11,6 @@ isolated_build_env = build

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310, check, reformat
3.11: py311
Expand Down

0 comments on commit 2b92d28

Please sign in to comment.