-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
virtualenv.path_locations() report of lib_dir under pypy #306
Comments
We probably should work out when it changed and have version specific info. |
in looking at this more, I think maybe this was intentional, not just a "bug". |
Is this still unresolved? |
I'm reluctant to expand the exposed API of virtualenv. Longer term, I believe people should be moving to the stdlib venv and virtualenv should either disappear (except to support Python 2.x) or become a thin wrapper around venv. To that end, offering any APIs that venv doesn't provide will make that harder. Surely the canonical way to get site-packages is It's conceivable that there is a need for a library to offer a way to introspect aspects of a Python interpreter, without running that interpreter. It's even conceivable that virtualenv might benefit from using such a library. But I don't think we have the resources to maintain such a library as part of virtualenv (especially given the myriad of special cases that exist - Debian's dist-packages, this PyPI variation, Windows vs Unix bin/scripts distinction, etc). |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Just add a comment if you want to keep it open. Thank you for your contributions. |
looks like virtualenv.path_locations() reports wrong lib_dir for current pypy
currently, virtualenv does this:
but take a look at the latest pypy install
I think lib_dir should do this:
The text was updated successfully, but these errors were encountered: