Skip to content
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

Cleanup an... interesting conditional #7152

Closed
pradyunsg opened this issue Oct 7, 2019 · 2 comments
Closed

Cleanup an... interesting conditional #7152

pradyunsg opened this issue Oct 7, 2019 · 2 comments
Labels
auto-locked Outdated issues that have been locked by automation good first issue A good item for first time contributors to work on skip news Does not need a NEWS file entry (eg: trivial changes)

Comments

@pradyunsg
Copy link
Member

There's an... interesting bit of logic in utils/misc.py:

if virtualenv_no_global():
sites.append(site_packages)
else:
sites.append(site_packages)

We'd likely want to change it to:

if not virtualenv_no_global(): 
    sites.append(site_packages)
    ...

None the less, if tests fail with that, change it to:

# NOTE: what about virtualenvs with no global site-packages
sites.append(site_packages)
...

Good First Issue: This issue is a good starting point for first time contributors -- the process of fixing this should be a good introduction to pip's development workflow. If you've already contributed to pip, work on another issue without this label instead. If there is not a corresponding pull request for this issue, it is up for grabs. For directions for getting set up, see our Getting Started Guide. If you are working on this issue and have questions, feel free to ask them here, #pypa-dev on Freenode, or the pypa-dev mailing list.

@pradyunsg pradyunsg added good first issue A good item for first time contributors to work on skip news Does not need a NEWS file entry (eg: trivial changes) labels Oct 7, 2019
kmoza pushed a commit to kmoza/pip that referenced this issue Oct 7, 2019
@kmoza
Copy link
Contributor

kmoza commented Oct 7, 2019

@pradyunsg submitted the PR #7161

kmoza pushed a commit to kmoza/pip that referenced this issue Oct 8, 2019
@pradyunsg
Copy link
Member Author

Fixed in #7161

@lock lock bot added the auto-locked Outdated issues that have been locked by automation label Nov 7, 2019
@lock lock bot locked as resolved and limited conversation to collaborators Nov 7, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
auto-locked Outdated issues that have been locked by automation good first issue A good item for first time contributors to work on skip news Does not need a NEWS file entry (eg: trivial changes)
Projects
None yet
Development

No branches or pull requests

2 participants