Skip to content

Commit acc1eb0

Browse files
authored
Drop Python 3.9 (#530)
* Drop Python 3.9 * lint * fix test * try fixing docs * list env explicitly * pin furo
1 parent 8102e18 commit acc1eb0

File tree

7 files changed

+26
-18
lines changed

7 files changed

+26
-18
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
os: ["ubuntu-latest"]
30-
python-version: ["3.9", "3.12"]
30+
python-version: ["3.10", "3.12"]
3131
steps:
3232
- uses: actions/checkout@v4
3333
with:
@@ -91,7 +91,7 @@ jobs:
9191
shell: bash -l {0}
9292
strategy:
9393
matrix:
94-
python-version: ["3.9", "3.12"]
94+
python-version: ["3.10", "3.12"]
9595
steps:
9696
- uses: actions/checkout@v4
9797
with:

.pre-commit-config.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@ ci:
33

44
repos:
55
- repo: https://github.com/asottile/pyupgrade
6-
rev: v3.16.0
6+
rev: v3.17.0
77
hooks:
88
- id: pyupgrade
9-
args: ["--py39-plus"]
9+
args: ["--py310-plus"]
1010

1111
- repo: https://github.com/astral-sh/ruff-pre-commit
1212
# Ruff version.
13-
rev: 'v0.5.0'
13+
rev: 'v0.6.1'
1414
hooks:
1515
- id: ruff
1616
args: ["--show-fixes", "--fix"]
1717

1818
- repo: https://github.com/psf/black-pre-commit-mirror
19-
rev: 24.4.2
19+
rev: 24.8.0
2020
hooks:
2121
- id: black
2222

2323
- repo: https://github.com/rstcheck/rstcheck
24-
rev: v6.2.0
24+
rev: v6.2.4
2525
hooks:
2626
- id: rstcheck
2727
additional_dependencies: [sphinx, tomli]
@@ -36,7 +36,7 @@ repos:
3636
- mdformat-myst
3737

3838
- repo: https://github.com/nbQA-dev/nbQA
39-
rev: 1.8.5
39+
rev: 1.8.7
4040
hooks:
4141
- id: nbqa-black
4242
- id: nbqa-ruff
@@ -67,7 +67,7 @@ repos:
6767
- id: validate-cff
6868

6969
- repo: https://github.com/abravalheri/validate-pyproject
70-
rev: v0.18
70+
rev: v0.19
7171
hooks:
7272
- id: validate-pyproject
7373

.readthedocs.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
version: 2
22

33
build:
4-
os: ubuntu-22.04
4+
os: ubuntu-lts-latest
55
tools:
6-
python: mambaforge-4.10
6+
python: mambaforge-latest
77
jobs:
88
post_checkout:
99
- (git --no-pager log --pretty="tformat:%s" -1 | grep -vqF "[skip-rtd]") || exit 183
1010
pre_install:
1111
- conda list sphinx
1212
- conda list cf_xarray
13+
- conda list
1314

1415
conda:
1516
environment: ci/doc.yml

cf_xarray/accessor.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,17 @@
55
import itertools
66
import re
77
from collections import ChainMap, namedtuple
8-
from collections.abc import Hashable, Iterable, Mapping, MutableMapping, Sequence
8+
from collections.abc import (
9+
Callable,
10+
Hashable,
11+
Iterable,
12+
Mapping,
13+
MutableMapping,
14+
Sequence,
15+
)
916
from datetime import datetime
1017
from typing import (
1118
Any,
12-
Callable,
1319
Literal,
1420
TypeVar,
1521
Union,

cf_xarray/tests/test_accessor.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@
5757
dataarrays = [airds.air, airds.air.chunk({"lat": 5})]
5858
objects = datasets + dataarrays
5959

60+
xr.set_options(use_flox=False)
61+
6062

6163
def assert_dicts_identical(dict1, dict2):
6264
assert dict1.keys() == dict2.keys()
@@ -1125,7 +1127,7 @@ def _check_attrs_equal(o, n):
11251127
else:
11261128
assert v == n[k]
11271129

1128-
assert type(old) == type(new)
1130+
assert type(old) == type(new) # noqa
11291131
_check_attrs_equal(old.attrs, new.attrs)
11301132

11311133
# Check coordinate attributes and data variable attributes

ci/doc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
- conda-forge
44
dependencies:
55
- pip
6-
- python=3.10
6+
- python
77
- matplotlib-base
88
- netcdf4
99
- pooch
@@ -20,7 +20,7 @@ dependencies:
2020
- pint
2121
- regex
2222
- shapely
23-
- furo
23+
- furo>=2024
2424
- myst-nb
2525
- pip:
2626
- -e ../

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cf_xarray"
33
description = "A convenience wrapper for using CF attributes on xarray objects"
44
readme = "README.rst"
5-
requires-python = ">=3.9"
5+
requires-python = ">=3.10"
66
license = {file = "LICENSE"}
77
keywords = ["xarray", "metadata", "CF conventions"]
88
classifiers = [
@@ -11,7 +11,6 @@ classifiers = [
1111
"Natural Language :: English",
1212
"Operating System :: OS Independent",
1313
"Programming Language :: Python",
14-
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)