summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23970: Fixes bdist_wininst not working on non-Windows platform.Steve Dower2015-05-231-2/+7
|
* Issue #23970: Adds distutils._msvccompiler for new Visual Studio versions.Steve Dower2015-05-232-37/+30
|
* Issue #16314: Added support for the LZMA compression in distutils.Serhiy Storchaka2015-05-162-2/+4
|
* Issue #23731: Implement PEP 488.Brett Cannon2015-04-132-10/+10
| | | | | | The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied.
* Closes #23437: Make user scripts directory versioned on Windows (patch by ↵Steve Dower2015-02-141-1/+1
| | | | pmoore)
* merge 3.4 (#23063)Benjamin Peterson2015-01-151-4/+4
|\
| * fix parsing reST with code or code-block directives (closes #23063)Benjamin Peterson2015-01-151-4/+4
| | | | | | | | Patch by Marc Abramowitz.
* | Fixes distutils adding/expecting too many _d suffixes.Steve Dower2014-12-161-3/+0
| |
* | Removes bdist_wininst dependency on MFC.Steve Dower2014-12-152-0/+0
| |
* | Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵Steve Dower2014-11-223-1/+1
| | | | | | | | which will be used for the official 3.5 release.
* | - Issue #17219: Add library build dir for Python extension cross-builds.doko@ubuntu.com2014-10-021-1/+1
|\ \ | |/
| * - Issue #17219: Add library build dir for Python extension cross-builds.doko@ubuntu.com2014-10-021-1/+1
| |
* | Remove pointless "vile hack" that can cause the build step to fail when some ↵Antoine Pitrou2014-09-301-9/+2
| | | | | | | | | | | | extension modules can't be imported. See issue #5309 for the build failures, issue #458343 for the original motivation.
* | #10510: Fix bug in forward port of 2.7 distutils patch.R David Murray2014-09-281-1/+0
|\ \ | |/ | | | | Pointed out by Arfrever.
| * #10510: Fix bug in forward port of 2.7 distutils patch.R David Murray2014-09-281-1/+0
| | | | | | | | Pointed out by Arfrever.
* | Merge: #10510: make distuitls upload/register use HTML standards compliant CRLF.R David Murray2014-09-271-5/+5
|\ \ | |/
| * #10510: make distuitls upload/register use HTML standards compliant CRLF.R David Murray2014-09-271-5/+5
| | | | | | | | Patch by Ian Cordasco, approved by Éric Araujo.
* | Issue #5309: distutils' build and build_ext commands now accept a ``-j``Antoine Pitrou2014-09-262-7/+59
| | | | | | | | option to enable parallel building of extension modules.
* | merge 3.4 (#22349)Benjamin Peterson2014-09-061-13/+4
|\ \ | |/
| * remove various dead version checks (closes #22349)Benjamin Peterson2014-09-061-13/+4
| | | | | | | | Patch from Thomas Kluyver.
* | merge 3.4 (closes #22200)Benjamin Peterson2014-08-181-26/+11
|\ \ | |/
| * remove 2.2 and 2.6 compat code (closes #22200)Benjamin Peterson2014-08-181-26/+11
| | | | | | | | Patch from Thomas Kluyver.
* | Issue #21722: The distutils "upload" command now exits with a non-zero ↵Antoine Pitrou2014-06-191-4/+5
|\ \ | |/ | | | | | | | | return code when uploading fails. Patch by Martin Dengler.
| * Issue #21722: The distutils "upload" command now exits with a non-zero ↵Antoine Pitrou2014-06-191-7/+8
| | | | | | | | | | | | return code when uploading fails. Patch by Martin Dengler.
* | Reindent long lineJason R. Coombs2014-05-101-1/+2
| |
* | Replace overly-aggressive comparison for type equality with an isinstance check.Jason R. Coombs2014-05-101-1/+1
| |
* | Drop support for Python 2.4 in upload command.Jason R. Coombs2014-05-101-8/+2
| |
* | Replace import * with explicit importJason R. Coombs2014-05-101-1/+1
| |
* | Clean up style in distutils upload commandJason R. Coombs2014-05-101-14/+19
|/
* Issue #20363. Fixed BytesWarning triggerred by test suite.Serhiy Storchaka2014-02-061-1/+1
|\ | | | | | | Patch by Berker Peksag.
| * Issue #20363. Fixed BytesWarning triggerred by test suite.Serhiy Storchaka2014-02-061-1/+1
| | | | | | | | Patch by Berker Peksag.
* | Issue #9709: Revert 97fb852c5c26. Many extensions are not using PyMODINIT_FUNC.Stefan Krah2014-01-281-1/+1
| |
* | Fix TypeError on "setup.py upload --show-response".Antoine Pitrou2013-12-222-5/+3
|\ \ | |/
| * Fix TypeError on "setup.py upload --show-response".Antoine Pitrou2013-12-222-5/+3
| |
* | Issue #20045: Fix "setup.py register --list-classifiers".Antoine Pitrou2013-12-211-1/+4
|\ \ | |/
| * Issue #20045: Fix "setup.py register --list-classifiers".Antoine Pitrou2013-12-211-1/+4
| |
* | Issue #9709: Stop adding PyInit_" + module_name' to export_symbols. This isStefan Krah2013-12-031-1/+1
| | | | | | | | already done by PyMODINIT_FUNC.
* | Issue #19544 and Issue #6516: Restore support for --user and --group ↵Andrew Kuchling2013-11-153-2/+31
| | | | | | | | parameters to sdist command as found in Python 2.7 and originally slated for Python 3.2 but accidentally rolled back as part of the distutils2 rollback. Closes Issue #6516.
* | Merge with 3.3 for Issue #19544 and Issue #6286. Merge is untested. I was ↵Jason R. Coombs2013-11-101-31/+29
|\ \ | |/ | | | | unable to test due to bab0cbf86835.
| * Issue #19544 and Issue #6286: Restore use of urllib over http allowing use ↵Jason R. Coombs2013-11-101-31/+29
| | | | | | | | of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2.
* | Merge with 3.3 for Issue #19286.Jason R. Coombs2013-11-021-1/+2
|\ \ | |/
| * Merge with 3.2 for Issue #19286.Jason R. Coombs2013-11-021-1/+2
| |\
| | * Issue #19286: [distutils] Only match files in build_py.find_data_files.Jason R. Coombs2013-11-021-1/+2
| | |
* | | Issue #4366: Fix building extensions on all platforms when --enable-shared ↵Antoine Pitrou2013-09-281-4/+3
|\ \ \ | |/ / | | | | | | is used.
| * | Issue #4366: Fix building extensions on all platforms when --enable-shared ↵Antoine Pitrou2013-09-281-4/+3
| | | | | | | | | | | | is used.
* | | #18741: merge with 3.3.Ezio Melotti2013-08-172-2/+2
|\ \ \ | |/ /
| * | #18741: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-172-2/+2
| | |
* | | Issue #17177: Stop using imp in distutilsBrett Cannon2013-06-152-8/+8
| | |
* | | - Issue #16754: Fix the incorrect shared library extension on linux. Introducedoko@ubuntu.com2013-03-211-3/+3
|\ \ \ | |/ / | | | | | | | | | two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
| * | - Issue #16754: Fix the incorrect shared library extension on linux. Introducedoko@ubuntu.com2013-03-211-3/+3
| |\ \ | | |/ | | | | | | | | | two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.