Submitter | phabricator |
---|---|
Date | July 24, 2020, 10:24 p.m. |
Message ID | <differential-rev-PHID-DREV-4zeu4xijdalbxnpqp4kc-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/46882/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/tests/test-install.t b/tests/test-install.t --- a/tests/test-install.t +++ b/tests/test-install.t @@ -214,7 +214,7 @@ no problems detected #endif -#if no-py3 virtualenv +#if py2virtualenv Note: --no-site-packages is deprecated, but some places have an ancient virtualenv from their linux distro or similar and it's not yet diff --git a/tests/hghave.py b/tests/hghave.py --- a/tests/hghave.py +++ b/tests/hghave.py @@ -886,8 +886,11 @@ return False -@check("virtualenv", "Python virtualenv support") -def has_virtualenv(): +@check("py2virtualenv", "Python2 virtualenv support") +def has_py2virtualenv(): + if sys.version_info[0] != 2: + return False + try: import virtualenv