Skip to content

release notes for 0.4 #263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pint>=0.14
xarray>=0.16.0
pint>=0.21
xarray>=2022.06.0
pooch
netCDF4
cf-xarray>=0.6
Expand Down
12 changes: 6 additions & 6 deletions docs/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

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

This means that the supported versions change:
Expand All @@ -12,13 +12,13 @@ What's new
dependency old minimum new minimum
============ ============== ==============
python 3.8 3.9
xarray 0.16.1 0.20
numpy 1.17 1.22
pint 0.16 0.19
xarray 0.16.1 2022.06.0
numpy 1.17 1.23
pint 0.16 0.21
============ ============== ==============

By `Justus Magin <https://github.com/keewis>`_.
- add support for python 3.11 (:pull:`228`)
- add support for python 3.11 and 3.12 (:pull:`228`, :pull:`263`)
By `Justus Magin <https://github.com/keewis>`_.
- ignore datetime units on attributes (:pull:`241`)
By `Justus Magin <https://github.com/keewis>`_.
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.9"
dependencies = [
"numpy >= 1.22",
"xarray >= 0.20",
"pint >= 0.19",
"numpy >= 1.23",
"xarray >= 2022.06.0",
"pint >= 0.21",
]
dynamic = ["version"]

Expand Down