| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
earlier NumPy versions. Fixes #199.
|
| |
|
|
|
|
| |
environment that has no stack support. Fixes #177.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
DISTUTILS_DEBUG work right. While testing on Python 2.6 and later, I was unable to evoke any abberant or distinct behavior by removing the value (with DISTUTILS_DEBUG enabled and using variations of --compile and --no-compile). Therefore, I believe that whatever was the motivation for adding the attribute (in 2c91c12dc9b1), its purpose has passed.
|
| |
|
|
|
|
| |
in list comprehensions.
|
|
|
|
|
|
| |
so that downloads aren't repeated and needed eggs are
always installed, even if they were downloaded to the
setup directory already. (backport from trunk)
|
|
|
|
| |
(backport from trunk)
|
|
|
|
| |
backward-compatibility mode. (backport from trunk)
|
| |
|
| |
|
|
|
|
|
| |
used, so that most system packagers won't require special support for
setuptools.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
format. Running ``bdist_wininst`` on a setuptools-based package wraps the
egg in an .exe that will safely install it as an egg (i.e., with metadata
and entry-point wrapper scripts), and ``easy_install`` can turn the .exe
back into an ``.egg`` file or directory and install it as such.
At this point, it should also be possible to "system package" any egg,
complete with wrapper scripts, and at least bdist_wininst works now.
More testing is needed for at least bdist_dumb and bdist_rpm.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
command so that you can more easily wrap a "flat" egg in a system package.
Enhanced ``bdist_rpm`` so that it installs single-version eggs that
don't rely on a ``.pth`` file. The ``--no-egg`` option has been removed,
since all RPMs are now built in a more backwards-compatible format.
Some work is now needed for easy_install to recognize bdist_wininst
.exe's that wrap these new flat eggs, as currently the .egg-info will
not be recognized.
|
|
|
|
|
|
|
| |
``install`` operations, that installs an ``.egg-info`` directory with the
package. This is a preliminary step to implementing "install
--single-version-externally-managed" for use with bdist_* commands and
Debian.
|
| |
|
| |
|
|
|
|
|
|
| |
bdist_egg ignore the RPM root when building an egg. This version now can
actually run bdist_rpm to completion, although the resulting RPM will
install an egg without a corresponding .pth file.
|
| |
|
|
|
|
|
|
|
|
| |
replacement of the "install" command so that installation is always via
easy_install, but doesn't use the previous kludgy intereception technique.
Allow ``extra_path`` to be set, but ignore it, so that when easy_install
wraps a package that uses it, there won't be any confusion as to the
desired installation location.
|
|
|
|
| |
- use whitespace according to the Python style guide
|
|
|