-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test absence of "The Python extension will have limited support for 2.7" notification #17478
Comments
Hi @ziebam, thank you for reaching out! This is primarily not meant for external contributors, but instead for the VS Code team to verify issues as a final pass before release (wiki). Glad to hear it works for you nonetheless 🙂 As for the 2 points you raised:
|
Both scenarios looked good and didn't show a notification. |
LGTM. My system install for Python 2 couldn't get virtualenv for some reason, but pyenv-win got things working. |
Refs: #17451
Complexity: 2
Create Issue
Context: We need to test that the notification introduced in #17009 doesn't appear anymore.
Requirements
pyenv
solution on Mac/Linux orpyenv-win
on Windows and callpyenv install 3.9.4 2.7.16
to get the two versions.virtualenv
with python 2.7:path/to/python2 -m pip install virtualenv
"python.experiments.optInto": ["All"],
in your user settings. If not, add it and reload VS Code.python.defaultInterpreterPath
entries in your user and workspace settings are at their default valuepython
python.insidersChannel
todaily
, wait for the download and installation to happen and reload VS Code)Scenario 1: Python 2.7 on load
path/to/python2 -m virtualenv .venv
Scenario 2: Python 3 on load -> Python 2
path/to/python3 -m venv .venv
2.7
)The text was updated successfully, but these errors were encountered: