seems https://github.com/geopython/pygeometa/pull/288 introduced datetime.UTC, which seems not available in py3.10 for backwards compat should we change to: ``` from datetime import datetime, timezone utc = getattr(datetime, "UTC", timezone.utc) today_and_now = datetime.now(utc) ```