This changes the supported Python version specification to ">=3.7". Prior to this change it was ">3.7", which is equivalent to ">=3.7.1", and which I believe does not clearly express intent.
See #135 for details (including on other approaches besides this one).
Fixes #135
This changes the supported Python version specification to
">=3.7"
. Prior to this change it was">3.7"
, which is equivalent to">=3.7.1"
, and which I believe does not clearly express intent.See #135 for details (including on other approaches besides this one).