File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ ## v2.0.4 (30/01/2026)
2+
3+ ### Changed
4+
5+ * Stabilised the order of columns in the collated AOH statistics CSV to make it easier to compare runs.
6+
17## v2.0.3 (28/01/2026)
28
39### Added
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def collate_data(
4646 all_keys |= set (data .keys ())
4747 assert set (COLUMNS ).issubset (all_keys )
4848
49- keys = COLUMNS + list (all_keys - set (COLUMNS ))
49+ keys = COLUMNS + sorted ( list (all_keys - set (COLUMNS ) ))
5050 for manifest in manifests :
5151 with open (manifest , encoding = "utf-8" ) as f :
5252 data = json .load (f )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " aoh"
7- version = " 2.0.3 "
7+ version = " 2.0.4 "
88description = " A library for calculating Area of Habitat for species distribution mapping"
99authors = [
1010 {name = " Michael Dales" , email = " mwd24@cam.ac.uk" }
You can’t perform that action at this time.
0 commit comments