python 3.7 is EOL as-of June-2023
I propose removing 3.7, and will submit associated PR, from
according to this SO post we should then increment major version.
handily, this will enable using one of my favourite 3.8+ features of f-string self-documenting expressions e.g. f'{var=}'
var = "foo"
print(f"some {var=}")
python 3.7 is EOL as-of June-2023
I propose removing 3.7, and will submit associated PR, from
according to this SO post we should then increment major version.
handily, this will enable using one of my favourite 3.8+ features of f-string self-documenting expressions e.g.
f'{var=}'