Closed hathawsh closed 1 year ago
While testing, I discovered Python 3.9 support is broken in 0.3.0 due to the use of | union operators. This PR replaces | with Union[...] and Optional[...] and cleans up tox.ini so that the tests are run for every supported version of Python.
|
Union[...]
Optional[...]
tox.ini
lgtm thanks @hathawsh!
Released in 0.3.1 👍🏼
While testing, I discovered Python 3.9 support is broken in 0.3.0 due to the use of
|
union operators. This PR replaces|
withUnion[...]
andOptional[...]
and cleans uptox.ini
so that the tests are run for every supported version of Python.