summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Fixed two issues for Python 2.4 compatibility. Tests now run again on Python 2.40.6.26Jason R. Coombs2012-04-082-2/+3
| | | | | | --HG-- branch : distribute extra : rebase_source : c6dc5ce8070ec42190d4d8eb6af28523d447f962
* Removed bind_and_activate parameters (not compatible with Python 2.4Jason R. Coombs2012-04-081-8/+4
| | | | | | --HG-- branch : distribute extra : rebase_source : bf2288bbb5fccc4aad0b8a09f5a444e0246c412e
* Removed unused importJason R. Coombs2012-04-081-1/+0
| | | | | | --HG-- branch : distribute extra : rebase_source : 4bad5e1f1f1e377a8cb5ade411a8ad572f85abb6
* Converted new tests in test_easy_install to use call-back functions instead ↵Jason R. Coombs2012-04-081-29/+54
| | | | | | | | of with statements for Python2.4 compatibility. --HG-- branch : distribute extra : rebase_source : e7edcca83dc29038a6832501a0a8251f4f3856a6
* Merged fix for issue 227. All tests pass on Python 2.7.Jason R. Coombs2012-04-071-0/+28
|\ | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : f219d7fe842fb516c599ae0259748c90edeea2c5
| * Backout changes to dist.py from 488cc8a13f66Jason R. Coombs2012-03-301-2/+1
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 2aeb4f273f05dd10b26a530c40dabfcb57861d37
| * Yet another approach - invoking setopt directly prior to invoking a new ↵Jason R. Coombs2012-03-301-15/+27
| | | | | | | | | | | | | | | | setup process. This approach works (compared to the previous setopt approach which did not). --HG-- branch : distribute extra : rebase_source : 4d28ae98e67d8bc1f2f98aee93d7a69000f10239
| * Put the setopt directives before bdist_eggJason R. Coombs2012-03-291-18/+16
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 23f656d6eb2ade3aa51f285a8bc288eab432819a
| * Another attempt at a fix that uses setopt instead of hacking easy_installJason R. Coombs2012-03-291-10/+8
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 907488d2ba609dbca39cd14c021c5cfb4f353a38
| * Merge with defaultJason R. Coombs2012-03-2919-79/+192
| |\ | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : a19a5411e30665acdd86f2554921e385759b1ef3
| * | Fix unintended addition of newlineErik Bray2011-08-301-1/+1
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 9ba9d12380a73ae3a0908a0015b887dbe26bd7ae
| * | First stab at a fix. The hack that allows it to work is that it allows the ↵Erik Bray2011-08-303-3/+24
| | | | | | | | | | | | | | | | | | | | | | | | easy_install command to take a '-' argument which simply means 'don't run', so that arguments can be passed to the easy_install command from the comannd line without running it. --HG-- branch : distribute extra : rebase_source : 6eff3586cbcf36e846b3419218979d03079d1bcf
* | | Add requests to the instance, so it's always available even if no requests ↵Jason R. Coombs2012-04-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | were made. --HG-- branch : distribute extra : rebase_source : b4bf42ec3470eda7ccef8e05aaf1944b450cf5e9
* | | Make sure to un-monkey-patch the Distribution class when running ↵Jason R. Coombs2012-04-071-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | test_no_setup_cfg. Otherwise, it breaks other tests (notably the new test_setup_requires_honors_fetch_params). --HG-- branch : distribute extra : rebase_source : f54d67ea495c18ff1dc74d12ff96797e64abe5e1
* | | Added another context to reset the _setup_stop_contextJason R. Coombs2012-04-071-5/+20
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : b31f921755cea6d2559c9f24f42b737aa80198e7
* | | Set the argv context so that easy_install.main invokes the command as if it ↵Jason R. Coombs2012-04-071-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | had been run from the command-line --HG-- branch : distribute extra : rebase_source : 4916aebae87b1d83dc27b494715c89dce1ce1e12
* | | Test now constructs the tarfile completely in memory (avoiding accidentally ↵Jason R. Coombs2012-04-071-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | writing over our own setup.py) --HG-- branch : distribute extra : rebase_source : ad8ec142238405edeee6dce51c05d382e53d1299
* | | Improved the MockServer so it now more effectively handles multiple requests ↵Jason R. Coombs2012-04-072-9/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (as any index server really must). Test now more accurately captures the working scenario. --HG-- branch : distribute extra : rebase_source : 8ee0afdd95219047e4700b85356792f6128b1fd8
* | | Create the sdist using tarfile and the code is much simplerJason R. Coombs2012-04-071-48/+8
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : f913f69988ddac8b6c27fb72d24728d18073fdb9
* | | We expect easy_install to raise a SystemExitJason R. Coombs2012-04-071-5/+3
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 74b6b4091c9719daab6f240f8c05b24183fc1b12
* | | Expanded TestSetupRequires so it actually stages the installation of an ↵Jason R. Coombs2012-04-071-14/+81
| | | | | | | | | | | | | | | | | | | | | | | | sdist with a setup_requires. --HG-- branch : distribute extra : rebase_source : 4266165d9e75e9e19551a3bf646820f309f631df
* | | Add test to capture issue 227Jason R. Coombs2012-04-012-0/+60
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 6a829eb08499c0b7a83dd653fb039b8695620fb0
* | | Started work on a Mock server that doesn't require a file system to back it.Jason R. Coombs2012-04-011-0/+17
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : feac8d802a8f574124fffab8c6c22d218b61987c
* | | Cleaned up simulated index server, expanding documentation.Jason R. Coombs2012-04-011-11/+18
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : b479cf805b766fa35c8e76c30c7725e93f56e6a2
* | | Reorganized imports and cleaned up whitespaceJason R. Coombs2012-04-011-7/+10
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 288c7531df0ab929030445973ecf6386a3e437b1
* | | Cleaned up excess whitespaceJason R. Coombs2012-04-011-34/+3
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 722c3a4c556ba4415c633e74e34fb45f76d8653d
* | | Reorganized importsJason R. Coombs2012-04-011-14/+16
| |/ |/| | | | | | | | | --HG-- branch : distribute extra : rebase_source : b348504ee7341fc2928a786167f33baa136e2b93
* | Include symlinks when extracting source dist. Fixes #183.Toshio Kuratomi2012-03-231-13/+16
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : c0d44c559d3433e4e4ceddaff5467c2d82dd7688
* | Converted have_pyrex into a functionJason R. Coombs2012-03-101-13/+19
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : b676ea404118a121400f2fd1b67095ab4521b7a0
* | Refactored Extension class so that __init__ is always called, but patched ↵Jason R. Coombs2012-03-101-11/+9
| | | | | | | | | | | | | | | | behavior is still selected by has_pyrex. --HG-- branch : distribute extra : rebase_source : d5670bf4bc6606d828b4ec7be055e26a7d4a9730
* | Reorganized importsJason R. Coombs2012-03-101-7/+9
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 3c54aa84f71220021b92f890359546b4ff41e5f6
* | Indent with spacesJason R. Coombs2012-03-101-7/+7
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 799441b639f6f9c55fe25745e793ac29419f0293
* | Now load legacy scripts wrappers from templates in the package, which get ↵0.6.25Jason R. Coombs2012-02-083-16/+30
| | | | | | | | | | | | | | | | converted to Python 3 syntax when built on Python 3. Fixes #273. --HG-- branch : distribute extra : rebase_source : 900842f8a9e70d347296f7b076c6113ead6f7318
* | Fix #272 - TypeError when namespace_package is unicodeJason R. Coombs2012-02-061-0/+2
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 5bb6bc394dbe2834977b853af85241ae0a472de6
* | Remove grody hack for later versions of Python where it is no longer ↵Jason R. Coombs2012-01-201-4/+14
| | | | | | | | | | | | | | | | necessary. Fixes #269. --HG-- branch : distribute extra : rebase_source : c4f18c8760303a2228baf5b88ec1f59a865999a5
* | Fix issue #262 - package_index.open_with_auth no longer throws LookupError ↵Jason R. Coombs2011-12-011-1/+18
| | | | | | | | | | | | | | | | on Python 3. --HG-- branch : distribute extra : rebase_source : ae4a0886ff89d3679f495f51171f94d3770e5d47
* | Reverting 1a1ab844f03e due to issue 250Guy Rozendorn (guyr@infinidat.com)2011-10-073-134/+6
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 0dca5e604c96429f07c4d7786d3a0991c42c129d
* | Revert 8d1cb51a01b6 because of issue #250Guy Rozendorn (guyr@infinidat.com)2011-10-071-4/+1
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 842a0d796e6e3cd5ecf312dd5c3ff2bb35d601a5
* | Added options to exclude 2to3 fixers. Fixes #249Jason R. Coombs2011-10-041-7/+21
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 2033bcdd4c2e78e0e03796f1f9cf6d6e9a59fc21
* | Issue #246guyroz2011-09-221-1/+3
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : e14172505ff8938f00f51de4f29a8fb2834ac933
* | Issue #244 raises ValueError in upload and register commands if using a ↵guyroz2011-09-203-7/+136
| | | | | | | | | | | | | | | | section without a repository value --HG-- branch : distribute extra : rebase_source : e57437a8ac03832ed8170c902996423a27235856
* | copying gui-32.exe to gui.exeguyroz2011-09-201-0/+0
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 36d39326b09155e123f2ea69c8a2ab493e761126
* | merging issues_207_238 to masterguyroz2011-09-207-1/+8
|\ \ | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : ffa072934d0623e442744b70426ac3c06326e2b8
| * \ merging default into issues_207_238guyroz2011-09-201-6/+15
| |\ \ | | | | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : fc74451584607ea1e96fd0b4449dcde63c3b844f
| * | | Issue #238: using 65bit wrappers on Python64bit on windowsguyroz2011-09-171-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : c0f80f1633017229ec77f4cc1d7c56e86aba3a84
| * | | Issue #207: updated executables for 32bit and 64bitguyroz2011-09-176-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : feb8ad4f829140739feeba915b835dbd26ab1b80
* | | | fixing regression -- generator syntax on python3guyroz2011-09-201-1/+1
| |/ / |/| | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 3708d2ca5f9a8fc2398204dbcb3febb6d61e134b
* | | fixing testsguyroz2011-09-191-6/+15
|\ \ \ | |/ / |/| | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 5d3983c1447f6389c00b416e5942f1764eaf9ece
| * | Fixing regression tests on Windows: #241, #240, #239guyroz2011-09-191-6/+15
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : fb5248f9bd280ccc075c1e93dd74379bf06d10f7
* | | Issue #208: fixing parse_version and post-release tagsguyroz2011-09-171-3/+17
|/ / | | | | | | | | | | | | | | including tests --HG-- branch : distribute extra : rebase_source : f953ba35614c338161249d6d74c7cda08acdf32b