Skip to content

Commit b813522

Browse files
Update dependency version constraints for release
1 parent 783125b commit b813522

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Version NEXTVERSION
4747
(https://github.com/NCAS-CMS/cf-python/issues/887)
4848
* New optional dependency: ``healpix>=2025.1``
4949
* New dependency: ``pyfive>=1.1.1``
50-
* Changed dependency: ``cfdm>=1.13.?.?, <1.13.?.0``
50+
* Changed dependency: ``cfdm>=1.13.1.0, <1.13.2.0``
5151

5252
----
5353

cf/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,16 @@
8585
from packaging.version import Version
8686

8787

88-
__date__ = "2026-01-19"
89-
__version__ = "3.19.0"
88+
__date__ = "2026-04-10"
89+
__version__ = "3.20.0"
9090
__cf_version__ = cfdm.__cf_version__
9191
__Conventions__ = f"CF-{__cf_version__}"
9292

9393
# Check the version of cfdm (this is worth doing because of the very
9494
# tight coupling between cf and cfdm, and the risk of bad things
9595
# happening at run time if the versions are mismatched).
96-
_minimum_vn = "1.13.0.0"
97-
_maximum_vn = "1.13.1.0"
96+
_minimum_vn = "1.13.1.0"
97+
_maximum_vn = "1.13.2.0"
9898
_cfdm_vn = Version(cfdm.__version__)
9999
if _cfdm_vn < Version(_minimum_vn) or _cfdm_vn >= Version(_maximum_vn):
100100
raise RuntimeError(

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
netCDF4>=1.7.2
22
cftime>=1.6.4
33
numpy>=2.0.0
4-
cfdm>=1.13.0.0, <1.13.1.0
4+
cfdm>=1.13.1.0, <1.13.2.0
55
psutil>=0.6.0
66
cfunits>=3.3.7
77
dask>=2025.5.1

0 commit comments

Comments
 (0)