-
Notifications
You must be signed in to change notification settings - Fork 292
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 + python-future = broken virtualenv #148
Comments
This is a bug in Better to use |
pyvenv isn't really an option for a codebase targetting 2+3 (especially considering the many edgecases that pyvenv is not-quite-correct for (and cannot be fixed due to being stranded in the stdlib)). Would there ever be potential plans to split the useful bits (backports, moves, etc.) from the shadowing of py3 module names? |
Thanks for mentioning this, Anthony. I think having a Python 2.7 I must admit that I haven't used virtualenv for 2 years (since I discovered conda). I'll try to find some time to tinker with it further to see what's going on. But, reading pypa/virtualenv#697, I rather suspect it's a bird's nest of brittle hacks ... |
Could you address the question? Probably fine to close as wontfix after answering I would guess.
|
@QuLogic @edschofield This is actually an effect of the pythonpath mining that we do at our company. We've since factored it out. |
munging* |
@bukzor it's actually not, see my reproduction |
I just ran into this issue, looks like it was introducing in virtualenv 12.04, I've started pinning to virtualenv 12.02 without issues |
fwiw, this is the commit that enabled it to work from virtualenv's side: pypa/virtualenv@73d46a8 It was however reverted later due to causing issues (?) on debian. I've created my own wrapper script for virtualenv that also solves this problem: https://github.com/asottile/virtualenv-hax |
Had the same issue. Downgrading to virtualenv 12.0.2 solved the problem. |
Experiencing the same issue. My version is 13.1.2. Had to downgrade to 12.0.2 as valerymelou mentioned. |
downgrading to 12.0.2 worked for me too |
Are they going to fix the bug or what? |
For Ubuntu 14.04, this combination worked for me:
Now, tox runs beautifully :) |
Hi guys I saw your opinions, and fernandojunior recomendations work for me however rigth now i update my virtualenv to 14.0.5 and the trouble are fixed in this version, currently i am working in my host with linuxmint 17.3 x64 |
What to do when getting the same error but using conda environments? |
Closing as this conversation has stalled and there appears to be no remaining action for |
yep yep! This got worked around in the |
Simplest reproduction:
The text was updated successfully, but these errors were encountered: