summaryrefslogtreecommitdiff
path: root/setuptools/command
Commit message (Collapse)AuthorAgeFilesLines
* Skip undecodable filenames in read_manifest as well.Stefan H. Holek2012-11-011-2/+5
| | | | | | --HG-- branch : distribute extra : rebase_source : 2dda494b1a4758e84dde81cc61170acd0e55d2f2
* Keep 'surrogateescape' when reading the manifest, to avoid breaking on bad ↵Stefan H. Holek2012-10-261-1/+2
| | | | | | | | input. --HG-- branch : distribute extra : rebase_source : 6f894cd508e73fae0ad02860654df5181055ba4d
* When writing the manifest under Python 3, skip filenames that cannot be ↵Stefan H. Holek2012-10-252-2/+14
| | | | | | | | encoded to UTF-8. --HG-- branch : distribute extra : rebase_source : f1b439267fce37754aac49af15a9e26346950a26
* Miscellaneous updates to the upload_docs command.Stefan H. Holek2012-10-191-54/+74
| | | | | | | | | | | | a) upload_docs now runs build_sphinx to generate documentation. b) The temporary ZIP file is properly disposed of. c) Auth credentials now work under Python 3. Fixes #326. hg record cannot split hunks, thus the large commit. --HG-- branch : distribute extra : rebase_source : 76d81880a2aaeb5b94a1d2388cb838068e4f64e3
* Use surrogateescape error handler when reading and writing the manifest. ↵Stefan H. Holek2012-10-172-2/+2
| | | | | | | | Refs #303. --HG-- branch : distribute extra : rebase_source : f0231cf87e2478f988f798dfe579f28e7561aeff
* Don't re-use FileList global name in egg_info.py.Stefan H. Holek2012-10-161-2/+2
| | | | | | --HG-- branch : distribute extra : rebase_source : ac180d4a23ab4fc03c243aa92dd8e6bc42bdabeb
* Revert 86d7748 drive-by commit because of unclear BBB consequences.Stefan H. Holek2012-10-151-14/+0
| | | | | | --HG-- branch : distribute extra : rebase_source : 2fb9a6ec09184e238551be4d0ea908e719badd27
* Fix duplicate application of version tags in 'egg_info' command. Fixes #299.Stefan H. Holek2012-10-081-1/+6
| | | | | | --HG-- branch : distribute extra : rebase_source : 9f6fb87944bc3b9828b04bf8ac5ba7b3a40bfc95
* marshall.load() does not necessarily raise ValueError. Fixes #283.Stefan H. Holek2012-10-081-6/+6
| | | | | | --HG-- branch : distribute extra : rebase_source : 203cee618118fb65bf109d2db0275aa90aa5a12d
* Remove a missing fixer warning which showed during normal operations. Fixes ↵Stefan H. Holek2012-10-081-4/+2
| | | | | | | | #305. --HG-- branch : distribute extra : rebase_source : 3e5912a80758abf1e198d400c29ab03112eb68d6
* Read and write manifest in UTF-8 under Python 3. Fixes #303.Stefan H. Holek2012-10-081-0/+27
| | | | | | --HG-- branch : distribute extra : rebase_source : 609c654effd2711aa803f6a0e84013294026608f
* Make sure the manifest never contains decomposed UTF-8.Stefan H. Holek2012-10-081-0/+14
| | | | | | --HG-- branch : distribute extra : rebase_source : 0e0fb3beac56f66f12670ec69ebfd3996d12d912
* Purge modules under test from sys.modules prior to running tests. Fixes #301.Stefan H. Holek2012-10-081-0/+17
| | | | | | --HG-- branch : distribute extra : rebase_source : 87561670c15ec8315f47157cdc0c06328ce8c20f
* Merged in embray/distribute/fix-sdist (pull request #4)Jason R. Coombs2012-09-051-0/+8
|\ | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : edfbe310b187502d98f3fb19e7aa405238a143be
| * This allows the sdist command to ensure that any files listed in ↵Erik Bray2012-02-131-0/+8
| | | | | | | | | | | | | | | | package_data are included in the dist, regardless of whether it's under version control, as is the case with distutil's sdist. Setting include_package_data=True disables this functionality. --HG-- branch : distribute extra : rebase_source : 2cae1675c638dc12fd556368074c6b5c691c6f58
* | Issue #310: Non-ascii characters in a namespace __init__.py causes errors.Lennart Regebro2012-08-221-2/+2
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 668e1c79a2bcc314bcf1f7213b317766bb8511ab
* | Issue #313: Support for sdist subcommands (Python 2.7)Lennart Regebro2012-08-221-1/+11
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 5461cca20f4c91fec21b69128f76f6e6a0df205c
* | Merged the two lists of acceptable names of README.txtLennart Regebro2012-08-221-4/+5
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 604b23f6559c4688d1b43bc102601e0a0ed914a9
* | Issue #307: Prints the full path when .svn/entries is broken.Lennart Regebro2012-08-221-1/+1
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 1836125ab8204364c8fb197d7c20c296a25f89c0
* | Issue #306: Even if 2to3 is used, we build in-place under Python 2.Lennart Regebro2012-08-222-3/+3
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : db4a1a3059533ad0c894f12c31e3fe1c238f4292
* | Added fix for the develop command, #299.Lennart Regebro2012-08-211-5/+29
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : ef69472e5a9ce97d9102578898e81e516f06497a
* | Add failing test for #301.Lennart Regebro2012-08-211-1/+2
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 2972e762cdab88e90c1c8b9b9a336afc641e996f
* | Issue #283: Reenable scanning of *.pyc / *.pyo files on Python 3.3.Arfrever Frehtes Taifersar Arahesis2012-07-251-2/+0
| | | | | | | | | | | | | | | | Scanning of these files was fixed in commit 2479772eeea7. --HG-- branch : distribute extra : rebase_source : fcbb14f0e6efc2c42b691fa2a8920816903ede42
* | Merged in msabramo/distribute_msabramo_py33 (pull request #10)Jason R. Coombs2012-07-211-1/+5
|\ \ | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 8293d555a44b136a77e31caeb8ec27becf19d462
| * | Add tests and fix for marshal.load of pyc files on Python 3.3Marc Abramowitz2012-06-261-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes https://bitbucket.org/tarek/distribute/issue/283/bdist_egg-issues-with-python-330ax --HG-- branch : distribute extra : rebase_source : ec6f2611d3f8a54b7e11cfadf9d03fdcdef39639
* | | Merge pull request #12Jason R. Coombs2012-07-211-0/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : d28d651ee0c59a1194c171613aefe284ade4399b
| * | | Issue #283 bdist_egg issues with python 3.3.0aXJim Fulton2012-07-141-0/+2
| |/ / | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 3173cb1ab5550635b8565767059701ab2649ac19
* | | Reorganized importsJason R. Coombs2012-07-211-1/+9
| | | | | | | | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 6836f95f7e0668d6bd3e34f915d16de21d4f3731
* | | When writing out scripts, respect the users umaskJustin Azoff2012-05-122-4/+11
|/ / | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : d4fc14bcdcd3e1a45da8bdcdef490537863ece35
* | README.rst is now a standardAlex Clark2012-04-221-1/+1
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : 261a30d0a7ec63b1ff4918d7906476a19945b288
* | Fix typo in protocol_version. Thanks aclark!Jason R. Coombs2012-04-161-1/+1
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : ab90cfb5cae3189b8d0c71c43992bc0273a7587a
* | 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-296-29/+66
|\ \ | |/ | | | | | | | | --HG-- branch : distribute extra : rebase_source : a19a5411e30665acdd86f2554921e385759b1ef3
| * Now load legacy scripts wrappers from templates in the package, which get ↵0.6.25Jason R. Coombs2012-02-081-16/+20
| | | | | | | | | | | | | | | | 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
| * 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
| * Issue #238: using 65bit wrappers on Python64bit on windowsguyroz2011-09-171-1/+8
| | | | | | | | | | | | --HG-- branch : distribute extra : rebase_source : c0f80f1633017229ec77f4cc1d7c56e86aba3a84
* | First stab at a fix. The hack that allows it to work is that it allows the ↵Erik Bray2011-08-301-1/+21
|/ | | | | | | | 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
* Fix NameError on Python 2.4, 2.5; reference #225Jason R. Coombs2011-08-201-1/+1
| | | | | | --HG-- branch : distribute extra : rebase_source : b2c739a08485c49b0735f5f7544f354b46ad1d12
* don't use ternary operator - fixes #225Tarek Ziade2011-08-201-1/+4
| | | | | | --HG-- branch : distribute extra : rebase_source : ecff177a6be463bfc55c40deec0a3f1e2804e895
* Corrected ValueError introduced in the last commit due to incorrect use of ↵Jason R. Coombs2011-08-011-1/+1
| | | | | | | | arg unpacking --HG-- branch : distribute extra : rebase_source : 0ebd905145e32bf072c00bc663dde8716ad4b88a
* Fix issue where easy_install fails on Python 3 on windows installer. Fixes #212Jason R. Coombs2011-07-251-1/+10
| | | | | | --HG-- branch : distribute extra : rebase_source : 1920a8d261fa7918d9d3813a104cf2ed11878c7c
* Support Python >=3.1.4 and >=3.2.1.Arfrever Frehtes Taifersar Arahesis2011-05-111-0/+5
| | | | | | | | | Type of distutils.command.build_scripts.first_line_re has been changed by the fix for http://bugs.python.org/issue10419. --HG-- branch : distribute extra : rebase_source : cd656cab87ff4f912ce5146b96e841b4eb17c49d