File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ version 3.16.2
35
35
* Fix bug whereby `Field.cyclic ` is not updated after a
36
36
`Field.del_construct ` operation
37
37
(https://github.com/NCAS-CMS/cf-python/issues/758)
38
-
38
+ * Changed dependency: ``cfunits>=3.3.7 ``
39
+ * Changed dependency: ``netCDF4>=1.6.5 ``
40
+
39
41
----
40
42
41
43
version 3.16.1
Original file line number Diff line number Diff line change 167
167
)
168
168
169
169
# Check the version of netCDF4
170
- _minimum_vn = "1.5.4 "
170
+ _minimum_vn = "1.6.5 "
171
171
if Version (netCDF4 .__version__ ) < Version (_minimum_vn ):
172
172
raise RuntimeError (
173
173
f"Bad netCDF4 version: cf requires netCDF4>={ _minimum_vn } . "
191
191
)
192
192
193
193
# Check the version of cfunits
194
- _minimum_vn = "3.3.6 "
194
+ _minimum_vn = "3.3.7 "
195
195
if Version (cfunits .__version__ ) < Version (_minimum_vn ):
196
196
raise RuntimeError (
197
197
f"Bad cfunits version: cf requires cfunits>={ _minimum_vn } . "
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ Required
196
196
197
197
* `dask <https://pypi.org/project/dask/ >`_, 2022.12.1 or newer.
198
198
199
- * `netCDF4 <https://pypi.org/project/netcdf4/ >`_, 1.5.4 or newer.
199
+ * `netCDF4 <https://pypi.org/project/netcdf4/ >`_, 1.6.5 or newer.
200
200
201
201
* `cftime <https://pypi.org/project/cftime/ >`_, version 1.6.2 or newer
202
202
(note that this package may be installed with netCDF4).
@@ -206,7 +206,7 @@ Required
206
206
* `cfdm <https://pypi.org/project/cfdm/ >`_, version 1.11.1.0 or up to,
207
207
but not including, 1.11.2.0.
208
208
209
- * `cfunits <https://pypi.org/project/cfunits/ >`_, version 3.3.6 or newer.
209
+ * `cfunits <https://pypi.org/project/cfunits/ >`_, version 3.3.7 or newer.
210
210
211
211
* `psutil <https://pypi.org/project/psutil/ >`_, version 0.6.0 or newer.
212
212
Original file line number Diff line number Diff line change 1
- netCDF4 >= 1.5.4
1
+ netCDF4 >= 1.6.5
2
2
cftime >= 1.6.2
3
3
numpy >= 1.22
4
4
cfdm >= 1.11.1.0 , < 1.11.2.0
5
5
psutil >= 0.6.0
6
- cfunits >= 3.3.6
6
+ cfunits >= 3.3.7
7
7
dask >= 2022.12.1
8
8
packaging >= 20.0
9
9
scipy >= 1.10.0
You can’t perform that action at this time.
0 commit comments