Skip to content

Commit

Permalink
preparation for v1.11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhassell committed Dec 6, 2023
1 parent 3eafdf2 commit 71bcb16
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version 1.11.0.0
----------------

**2023-??-??**
**2023-12-06**

* Python 3.7 support removed
(https://github.com/NCAS-CMS/cfdm/issues/274)
Expand Down
2 changes: 1 addition & 1 deletion cfdm/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""

__date__ = "2023-??-??"
__date__ = "2023-12-06"
__cf_version__ = "1.11"
__version__ = "1.11.0.0"

Expand Down
12 changes: 7 additions & 5 deletions cfdm/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,21 +324,23 @@ def environment(display=True, paths=True):
Python: 3.9.12 /home/user/miniconda3/bin/python
netCDF4: 1.6.0 /home/user/miniconda3/lib/python3.9/site-packages/netCDF4/__init__.py
numpy: 1.22.3 /home/user/miniconda3/lib/python3.9/site-packages/numpy/__init__.py
cfdm.core: 1.10.0.0 /home/user/miniconda3/lib/python3.9/site-packages/cfdm/core/__init__.py
cfdm.core: 1.11.0.0 /home/user/miniconda3/lib/python3.9/site-packages/cfdm/core/__init__.py
scipy: 1.11.3 /home/user/miniconda3/lib/python3.11/site-packages/scipy/__init__.py
cftime: 1.6.1 /home/user/miniconda3/lib/python3.9/site-packages/cftime/__init__.py
netcdf_flattener: 1.2.0 /home/user/miniconda3/lib/python3.9/site-packages/netcdf_flattener/__init__.py
cfdm: 1.10.0.0 /home/user/miniconda3/lib/python3.9/site-packages/cfdm/__init__.py
cfdm: 1.11.0.0 /home/user/miniconda3/lib/python3.9/site-packages/cfdm/__init__.py
>>> cfdm.environment(paths=False)
HDF5 library: 1.12.1
netcdf library: 4.8.1
Python: 3.9.12
netCDF4: 1.6.0
numpy: 1.22.3
cfdm.core: 1.10.0.0
cfdm.core: 1.11.0.0
scipy: 1.11.3
cftime: 1.6.1
netcdf_flattener: 1.2.0
cfdm: 1.10.0.0
cfdm: 1.11.0.0
"""
out = core.environment(display=False, paths=paths) # get all core env
Expand Down Expand Up @@ -391,7 +393,7 @@ def CF():
**Examples**
>>> CF()
'1.10'
'1.11'
"""
return __cf_version__
Expand Down
8 changes: 4 additions & 4 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
],
"identifier": "",
"codeRepository": "https://github.com/NCAS-CMS/cfdm",
"datePublished": "2023-08-31",
"dateModified": "2023-08-31",
"dateCreated": "2023-08-31",
"datePublished": "2023-12-06",
"dateModified": "2023-12-06",
"dateCreated": "2023-12-06",
"description": "A Python reference implementation of the CF data model.",
"keywords": "cf, metadata, netcdf, python",
"license": "MIT",
"title": "cfdm",
"version": "1.10.1.2"
"version": "1.11.0.0"
}
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ To install from source:
1. Download the cfdm package from https://pypi.org/project/cfdm

2. Unpack the library (replacing ``<version>`` with the version that
you want to install, e.g. ``1.10.0.3``):
you want to install, e.g. ``1.11.0.0``):

.. code:: console
Expand Down
2 changes: 1 addition & 1 deletion docs/source/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Documentation for all versions of cfdm.
**CF-1.11**
-----------

* `Version 1.11.0.0 <https://ncas-cms.github.io/cfdm-docs/1.11.0.0>`_ (2023-12-??)
* `Version 1.11.0.0 <https://ncas-cms.github.io/cfdm-docs/1.11.0.0>`_ (2023-12-06)

**CF-1.10**
-----------
Expand Down

0 comments on commit 71bcb16

Please sign in to comment.