diff options
author | Bernát Gábor <gaborjbernat@gmail.com> | 2022-12-05 10:29:55 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 10:29:55 -0800 |
commit | 28f40672503974bdbf2c83d5174b738dcf45a5e5 (patch) | |
tree | 194e03dc1075e76845752332f7080014a967f717 /src | |
parent | da9262539911fa0c6efb01bff3843aeb74843d87 (diff) | |
download | virtualenv-28f40672503974bdbf2c83d5174b738dcf45a5e5.tar.gz |
Py marker means any python not CPython (#2460)
Resolves https://github.com/tox-dev/tox/issues/2566
Diffstat (limited to 'src')
-rw-r--r-- | src/virtualenv/discovery/py_spec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/virtualenv/discovery/py_spec.py b/src/virtualenv/discovery/py_spec.py index 058d8be..103c7ae 100644 --- a/src/virtualenv/discovery/py_spec.py +++ b/src/virtualenv/discovery/py_spec.py @@ -56,7 +56,7 @@ class PythonSpec: else: impl = groups["impl"] if impl == "py" or impl == "python": - impl = "CPython" + impl = None arch = _int_or_none(groups["arch"]) if not ok: |