-
Notifications
You must be signed in to change notification settings - Fork 180
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
Support venv on python>=3.3 #523
Comments
Want to try if it works? Patches are welcome in principle. All relevant
code is in asv/plugins/virtualenv.py
|
Ah, I think that won't work because you want to be able to use the current python to create virtualenvs for other pythons, which venv doesn't support. |
I think that's probably not so crucial, it would probably also be fine to shell out to a subprocess for the env creation. |
The workaround to the nested virtualenv/venv case apparently requires finding the "real" Python executable: from https://github.com/berdario/pew/blob/c25f19e9bb0bc94f696407378fc104706b5dd3b5/pew/_venv.py#L68-L104
|
It would be great to push this forward. |
I know that the docs state a dependency on
but would it be possible to just replace
by
everywhere, so that virtualenv becomes unneeded on Python>=3.3?
(Basically, I don't know if the two have APIs compatible enough for asv.)
The text was updated successfully, but these errors were encountered: