Skip to content

Commit

Permalink
versions
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhassell committed Aug 31, 2023
1 parent 9b3083d commit 912dc6f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions cf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
"""

__Conventions__ = "CF-1.10"
__date__ = "2023-07-21"
__version__ = "3.15.2"
__date__ = "2023-08-31"
__version__ = "3.15.3"

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

# Check the version of cfdm
_minimum_vn = "1.10.1.1"
_minimum_vn = "1.10.1.2"
_maximum_vn = "1.10.2.0"
_cfdm_version = Version(cfdm.__version__)
if not Version(_minimum_vn) <= _cfdm_version < Version(_maximum_vn):
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Required
* `cftime <https://pypi.org/project/cftime/>`_, version 1.6.2 or newer
(note that this package may be installed with netCDF4).

* `cfdm <https://pypi.org/project/cfdm/>`_, version 1.10.1.1 or up to,
* `cfdm <https://pypi.org/project/cfdm/>`_, version 1.10.1.2 or up to,
but not including, 1.10.2.0.

* `cfunits <https://pypi.org/project/cfunits/>`_, version 3.3.6 or newer.
Expand Down
1 change: 1 addition & 0 deletions docs/source/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Documentation for all versions of cf.
**CF-1.10**
-----------

* `Version 3.15.3 <https://ncas-cms.github.io/cf-python-docs/3.15.3>`_ (2023-08-31)
* `Version 3.15.2 <https://ncas-cms.github.io/cf-python-docs/3.15.2>`_ (2023-07-21)
* `Version 3.15.1 <https://ncas-cms.github.io/cf-python-docs/3.15.1>`_ (2023-06-09)
* `Version 3.15.0 <https://ncas-cms.github.io/cf-python/3.15.0>`_ (2023-04-27)
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.1, <1.10.2.0
cfdm>=1.10.1.2, <1.10.2.0
psutil>=0.6.0
cfunits>=3.3.6
dask>=2022.12.1
Expand Down

0 comments on commit 912dc6f

Please sign in to comment.