csiro-coasts / emsarray

xarray extension that supports EMS model formats
BSD 3-Clause "New" or "Revised" License
13 stars 2 forks source link

Use Python 3.9 typing features #127

Closed mx-moth closed 8 months ago

mx-moth commented 8 months ago

As support for Python 3.8 was dropped, we can now use typing features introduced in Python 3.9, specifically PEP 585 – Type Hinting Generics In Standard Collections. Additionally, from __future__ import annotations is dropped as Python type annotations seem to be moving towards PEP 649 annotation scopes.

Part of #109