-
-
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 doesn't notice when installing distribute fails #301
virtualenv doesn't notice when installing distribute fails #301
Comments
Yes, certainly - pull request welcome. |
I have a local fix to virtualenv_embedded/distribute_setup.py , but I've sent it to distribute first since it's the upstream for that file: https://bitbucket.org/tarek/distribute/pull-request/23/ Once distribute is updated, it will be a matter of running bin/refresh-support-files.py and bin/rebuild-script.py to update virtualenv. |
So, it's been merged in the development version of distribute. I don't know about their release timeline. |
FYI, distribute 0.6.29 has been released including your fix. |
------ 0.6.29 ------ * Pull Request #14: Honor file permissions in zip files. * Issue #327: Merged pull request #24 to fix a dependency problem with pip. * Merged pull request #23 to fix pypa/virtualenv#301. * If Sphinx is installed, the `upload_docs` command now runs `build_sphinx` to produce uploadable documentation. * Issue #326: `upload_docs` provided mangled auth credentials under Python 3. * Issue #320: Fix check for "createable" in distribute_setup.py. * Issue #305: Remove a warning that was triggered during normal operations. * Issue #311: Print metadata in UTF-8 independent of platform. * Issue #303: Read manifest file with UTF-8 encoding under Python 3. * Issue #301: Allow to run tests of namespace packages when using 2to3. * Issue #304: Prevent import loop in site.py under Python 3.3. * Issue #283: Reenable scanning of *.pyc / *.pyo files on Python 3.3. * Issue #299: The develop command didn't work on Python 3, when using 2to3, as the egg link would go to the Python 2 source. Linking to the 2to3'd code in build/lib makes it work, although you will have to rebuild the module before testing it. * Issue #306: Even if 2to3 is used, we build in-place under Python 2. * Issue #307: Prints the full path when .svn/entries is broken. * Issue #313: Support for sdist subcommands (Python 2.7) * Issue #314: test_local_index() would fail an OS X. * Issue #310: Non-ascii characters in a namespace __init__.py causes errors. * Issue #218: Improved documentation on behavior of `package_data` and `include_package_data`. Files indicated by `package_data` are now included in the manifest. * `distribute_setup.py` now allows a `--download-base` argument for retrieving distribute from a specified location.
------ 0.6.29 ------ * Pull Request #14: Honor file permissions in zip files. * Issue #327: Merged pull request #24 to fix a dependency problem with pip. * Merged pull request #23 to fix pypa/virtualenv#301. * If Sphinx is installed, the `upload_docs` command now runs `build_sphinx` to produce uploadable documentation. * Issue #326: `upload_docs` provided mangled auth credentials under Python 3. * Issue #320: Fix check for "createable" in distribute_setup.py. * Issue #305: Remove a warning that was triggered during normal operations. * Issue #311: Print metadata in UTF-8 independent of platform. * Issue #303: Read manifest file with UTF-8 encoding under Python 3. * Issue #301: Allow to run tests of namespace packages when using 2to3. * Issue #304: Prevent import loop in site.py under Python 3.3. * Issue #283: Reenable scanning of *.pyc / *.pyo files on Python 3.3. * Issue #299: The develop command didn't work on Python 3, when using 2to3, as the egg link would go to the Python 2 source. Linking to the 2to3'd code in build/lib makes it work, although you will have to rebuild the module before testing it. * Issue #306: Even if 2to3 is used, we build in-place under Python 2. * Issue #307: Prints the full path when .svn/entries is broken. * Issue #313: Support for sdist subcommands (Python 2.7) * Issue #314: test_local_index() would fail an OS X. * Issue #310: Non-ascii characters in a namespace __init__.py causes errors. * Issue #218: Improved documentation on behavior of `package_data` and `include_package_data`. Files indicated by `package_data` are now included in the manifest. * `distribute_setup.py` now allows a `--download-base` argument for retrieving distribute from a specified location.
Trying to create a new virtualenv outputs
Only when -vvv is activated, the output shows (irrelevant parts snipped):
so actually distribute install is NOT done. Virtualenv should notice this and abort the installation at that point, reducing time to debug the situation.
The text was updated successfully, but these errors were encountered: