Skip to content

Commit 14dd1f2

Browse files
authored
release notes for 0.4 (#263)
* bump dependencies * officially support python 3.12 * also bump the docs requirements * release date * release notes
1 parent 19a1dcc commit 14dd1f2

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

docs/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pint>=0.14
2-
xarray>=0.16.0
1+
pint>=0.21
2+
xarray>=2022.06.0
33
pooch
44
netCDF4
55
cf-xarray>=0.6

docs/whats-new.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
What's new
44
==========
5-
0.4 (*unreleased*)
6-
------------------
5+
0.4 (23 Jun 2024)
6+
-----------------
77
- adopt `SPEC0 <https://scientific-python.org/specs/spec-0000>`_ (:pull:`228`)
88

99
This means that the supported versions change:
@@ -12,13 +12,13 @@ What's new
1212
dependency old minimum new minimum
1313
============ ============== ==============
1414
python 3.8 3.9
15-
xarray 0.16.1 0.20
16-
numpy 1.17 1.22
17-
pint 0.16 0.19
15+
xarray 0.16.1 2022.06.0
16+
numpy 1.17 1.23
17+
pint 0.16 0.21
1818
============ ============== ==============
1919

2020
By `Justus Magin <https://github.com/keewis>`_.
21-
- add support for python 3.11 (:pull:`228`)
21+
- add support for python 3.11 and 3.12 (:pull:`228`, :pull:`263`)
2222
By `Justus Magin <https://github.com/keewis>`_.
2323
- ignore datetime units on attributes (:pull:`241`)
2424
By `Justus Magin <https://github.com/keewis>`_.

pyproject.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ classifiers = [
1616
"Programming Language :: Python :: 3.9",
1717
"Programming Language :: Python :: 3.10",
1818
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
1920
"Topic :: Scientific/Engineering",
2021
]
2122
requires-python = ">=3.9"
2223
dependencies = [
23-
"numpy >= 1.22",
24-
"xarray >= 0.20",
25-
"pint >= 0.19",
24+
"numpy >= 1.23",
25+
"xarray >= 2022.06.0",
26+
"pint >= 0.21",
2627
]
2728
dynamic = ["version"]
2829

0 commit comments

Comments
 (0)