Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhassell committed Sep 13, 2023
1 parent 71f31f6 commit c3ad04c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions cf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
"""

__Conventions__ = "CF-1.10"
__date__ = "2023-08-31"
__version__ = "3.15.3"
__Conventions__ = "CF-1.11"
__date__ = "2023-??-??"
__version__ = "3.16.0"

_requires = (
"numpy",
Expand Down Expand Up @@ -193,8 +193,8 @@
)

# Check the version of cfdm
_minimum_vn = "1.10.1.2"
_maximum_vn = "1.10.2.0"
_minimum_vn = "1.11.0.0"
_maximum_vn = "1.11.1.0"
_cfdm_version = Version(cfdm.__version__)
if not Version(_minimum_vn) <= _cfdm_version < Version(_maximum_vn):
raise RuntimeError(
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
netCDF4>=1.5.4
cftime>=1.6.2
numpy>=1.22
cfdm>=1.10.1.2, <1.10.2.0
cfdm>=1.11.0.0, <1.11.1.0
psutil>=0.6.0
cfunits>=3.3.6
dask>=2022.12.1
Expand Down

0 comments on commit c3ad04c

Please sign in to comment.