indygreg / python-build-standalone

Produce redistributable builds of Python
Mozilla Public License 2.0
2.13k stars 133 forks source link

Remove redundant version check #393

Closed hugovk closed 4 hours ago

hugovk commented 1 day ago

Follow on from https://github.com/indygreg/python-build-standalone/pull/385.

matches!(python_major_minor, "3.9" | "3.10" | "3.11" | "3.12" | "3.13") is essentially everything and tautologous, so let's remove it.

Also add colour to CI logs for readability.