| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Backout b17e9a0ea116 and 50725de303ef, restoring Feature model. Fixes #161 ↵ | Jason R. Coombs | 2014-03-08 | 1 | -0/+84 |
| | | | | | and re-opens #65. | ||||
| * | Remove import (missed in parent commit). | Jason R. Coombs | 2014-02-09 | 1 | -1/+0 |
| | | |||||
| * | Removed Features functionality. Fixes #65. | Jason R. Coombs | 2014-02-09 | 1 | -83/+0 |
| | | |||||
| * | Merged upstream changes. | Vinay Sajip | 2013-06-19 | 1 | -0/+1 |
| |\ | |||||
| | * | Merge with upstream | Jason R. Coombs | 2013-06-18 | 1 | -4/+6 |
| | |\ | |||||
| | | * | Changes to support 2.x and 3.x in the same codebase. | Vinay Sajip | 2011-06-20 | 1 | -4/+6 |
| | | | | |||||
| * | | | Misc. updates following 2to3 checks. | Vinay Sajip | 2013-06-17 | 1 | -1/+1 |
| | | | | |||||
| * | | | Initial commit. All tests pass on 2.7, 3.2 and 3.3, though there are some ↵ | Vinay Sajip | 2013-06-15 | 1 | -4/+6 |
| |/ / | | | | | | | atexit errors in the multiprocessing module in 2.7/3.2 (seemingly unrelated to setuptools). | ||||
| * | | Adds a fix for issue #318, including a regression test. This also fixes ↵ | Erik Bray | 2012-09-06 | 1 | -1/+1 |
| | | | | | | | | | another test that was passing trivially due to *bug* in yet another test, ugh | ||||
| * | | Got rid of deprecated assert_ and assertEquals. | Lennart Regebro | 2012-08-22 | 1 | -32/+32 |
| | | | |||||
| * | | Merge fix for doctest failures on Python 3. Fixes #277. | Jason R. Coombs | 2012-04-14 | 1 | -2/+2 |
| |\ \ | |||||
| | * | | Fixed test failures in the doctests on Python 3. | Jason R. Coombs | 2012-04-14 | 1 | -2/+2 |
| | | | | |||||
| * | | | Merge fixes for depends module imports. Fixes in part #277. | Jason R. Coombs | 2012-04-14 | 1 | -34/+3 |
| |\ \ \ | |||||
| | * | | | Cleaned up excess whitespace | Jason R. Coombs | 2012-04-01 | 1 | -34/+3 |
| | |/ / | |||||
| * | | | Fixed issue where some functions are excluded from the depends module on ↵ | Jason R. Coombs | 2012-04-14 | 1 | -14/+22 |
| |/ / | | | | | | | certain platforms. | ||||
| * | | Reorganized imports | Jason R. Coombs | 2012-04-01 | 1 | -14/+16 |
| |/ | |||||
| * | removed assertTrue/assertFalse occurrences | Tarek Ziade | 2010-05-19 | 1 | -32/+32 |
| | | |||||
| * | Use assertTrue and assertFalse instead of deprecated failUnless and failIf. | Arfrever Frehtes Taifersar Arahesis | 2010-05-06 | 1 | -32/+32 |
| | | |||||
| * | moved api_tests.txt doctest to tests/ | Tarek Ziad? | 2009-07-17 | 1 | -1/+1 |
| | | |||||
| * | Changed the testModuleExtract and testRequire tests from DependsTests to use ↵ | Hanno Schlichting | 2009-07-16 | 1 | -8/+8 |
| | | | | | the email package instead of distutils as a test base. The distutils package gets too much special treatment, for example in virtualenv environments, which obscure the test results. | ||||
| * | Fix http://bugs.python.org/setuptools/issue31 (backport from trunk) | PJ Eby | 2008-08-21 | 1 | -9/+5 |
| | | |||||
| * | Backport all known 2.5-compatibility fixes | PJ Eby | 2006-09-20 | 1 | -3/+3 |
| | | |||||
| * | Added quoting of script arguments and extended the quoting logic to | Jim Fulton | 2006-08-22 | 1 | -5/+10 |
| | | | | | | | | | | handle embedded quotes. Added support for passing a single argument on the shebang line to pass things like -O and -i. Fixed bug in handling trailing whitespace in Python command. | ||||
| * | Enhanced test loader to scan packages as well as modules, and call | PJ Eby | 2006-03-28 | 1 | -47/+6 |
| | | | | | ``additional_tests()`` if present to get non-unittest tests. | ||||
| * | Got rid of the no-longer meaningful "depends" command. Consolidated the | PJ Eby | 2005-08-06 | 1 | -41/+0 |
| | | | | | | | | | 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. | ||||
| * | Massive API refactoring; see setuptools.txt changelog for details. Also, | PJ Eby | 2005-07-18 | 1 | -8/+8 |
| | | | | | | add ``#egg=project-version`` link support, and docs on how to make your package available for EasyInstall to find. | ||||
| * | Enhanced the ``test`` command so that it doesn't install the package, but | PJ Eby | 2005-07-06 | 1 | -5/+5 |
| | | | | | | | | | | instead builds any C extensions in-place, updates the ``.egg-info`` metadata, adds the source directory to ``sys.path``, and runs the tests directly on the source. This avoids an "unmanaged" installation of the package to ``site-packages`` or elsewhere. (Also, fix a breaking test of older dependency support; this should probably be removed altogether, as long as nobody's using it.) | ||||
| * | Rough draft of version requirement parser. Make bdist_egg look for a | PJ Eby | 2005-04-02 | 1 | -6/+6 |
| | | | | | | | | | distname.egg-info directory instead of EGG-INFO.in; this will be used later to support development of egg-distributed packages that an application under development expects to 'require()'. (Thanks to Fred Drake for pointing out this use case, and Bob Ippolito for helping me figure out how to support it, although the runtime support doesn't actually exist yet.) | ||||
| * | Back out the addition of bogus 'if __name__=="__main__"' block; the One | PJ Eby | 2005-04-01 | 1 | -79/+174 |
| | | | | | | Obvious Way to test setuptools is to run 'setup.py test', because that also provides an integration test for the 'test' command. | ||||
| * | remove excess blank lines, and apply whitespace more in line with the Python | Fred Drake | 2004-04-05 | 1 | -166/+71 |
| | | | | | style guidelines in PEP 8 | ||||
| * | Compute command line that should be passed to child setup scripts. | PJ Eby | 2004-03-22 | 1 | -21/+21 |
| | | | | | | Warn user if unsupported options are supplied, and cancel unless 'depends -i' (aka '--ignore-extra-args') was used. | ||||
| * | Flesh out 'depends' command to display dependencies' status, and halt if | PJ Eby | 2004-03-20 | 1 | -14/+55 |
| | | | | | | | | | | | | | | | | | | all requirements aren't met. (Also, check planned install location for the dependencies, as well as checking sys.path.) Also: * Allow 'Feature()' objects to include 'Require()' objects, so that dependencies can be optional * 'Require()' objects can set a homepage, whose URL will be displayed by the 'depends' command if the dependency needs to be installed. * Misc. fixes/refactoring of version validation to properly handle "unknown" versions, and to decouple version fetching from version checking. * Updated TODO to remove various completed items. | ||||
| * | Initial checkin of setuptools 0.0.1. | PJ Eby | 2004-03-19 | 1 | -0/+410 |
