Skip to content

Commit f6124d5

Browse files
authored
Merge pull request #46 from quantifyearth/mwd-consistent-collation-columns
Consistent collation columns
2 parents e3d2fdc + b4c0164 commit f6124d5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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

aoh/validation/collate_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "aoh"
7-
version = "2.0.3"
7+
version = "2.0.4"
88
description = "A library for calculating Area of Habitat for species distribution mapping"
99
authors = [
1010
{name = "Michael Dales", email = "mwd24@cam.ac.uk"}

0 commit comments

Comments
 (0)