Support version ranges in virtualenv-multiver.
Review Request #13088 — Created June 1, 2023 and submitted — Latest diff uploaded
This allows
virtualenv-multiver
to accept version ranges, instead of
having to list out every single version. For example,2.7 3.8-3.11
will expand to2.7 3.8 3.9 3.10 3.11
.This reduces errors and greatly simplifies usage.
Duplicate verisons are also now removed, preventing any redundant
environment creation.
Used this to create many environments.
Tested that versions are correctly deduplicated.