summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
Commit message (Collapse)AuthorAgeFilesLines
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-2/+2
|
* Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries.Ned Deily2016-02-242-2/+25
| | | | | | | | | | | | | | | As of Xcode 7, SDKs for Apple platforms now include textual-format stub libraries whose file names have a .tbd extension rather than the standard OS X .dylib extension. The Apple compiler tool chain handles these stub libraries transparently and the installed system shared libraries are still .dylibs. However, the new stub libraries cause problems for third-party programs that support building with Apple SDKs and make build-time decisions based on the presence or paths of system-supplied shared libraries in the SDK. In particular, building Python itself with an SDK fails to find system-supplied libraries during setup.py's build of standard library extension modules. The solution is to have find_library_file() in Distutils search for .tbd files, along with the existing types (.a, .so, and .dylib). Patch by Tim Smith.
* Issue #25607: Restore old distutils logging threshold after running tests thatSerhiy Storchaka2015-11-122-0/+4
| | | | parse command line arguments.
* fix name of argument in docstring and the docs (closes #25076)Benjamin Peterson2015-09-131-1/+1
| | | | Patch by TAKASE Arihiro.
* Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.pySteve Dower2015-08-081-1/+1
|
* Close #24508: Backport the 3.5 MSBuild project files.Zachary Ware2015-07-161-4/+6
| | | | | | | The old project files move to PC/VS9.0 and remain supported. VS2008 is still required to build 2.7; VS2010 (or later, plus Windows SDK 7.1) is *also* required to use the new project files.
* keep distutils version in sync with python version automaticallyBenjamin Peterson2015-05-261-8/+2
|
* python 2.7.10 finalv2.7.10Benjamin Peterson2015-05-231-1/+1
|
* bump version to 2.7.10rc1v2.7.10rc1Benjamin Peterson2015-05-101-1/+1
|
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-2/+2
| | | | | robust at shutdown. If needs to release multiple resources, they are released even if errors are occured.
* fix parsing reST with code or code-block directives (closes #23063)Benjamin Peterson2015-01-152-4/+35
| | | | Patch by Marc Abramowitz.
* fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-1/+1
| | | | Patch by Karan Goel.
* bump to 2.7.9 finalv2.7.9Benjamin Peterson2014-12-101-1/+1
|
* 2.7.9rc1v2.7.9rc1Benjamin Peterson2014-11-261-1/+1
|
* Issue #8876: distutils now falls back to copying files when hard linking ↵Antoine Pitrou2014-10-302-13/+64
| | | | | | doesn't work. This allows use with special filesystems such as VirtualBox shared folders.
* - Issue #17219: Add library build dir for Python extension cross-builds.doko@ubuntu.com2014-10-021-1/+1
|
* #22512: move distutils rpm test's .rpmdb to testing tmpdir.R David Murray2014-10-011-0/+3
| | | | Patch by Francis MB.
* #10510: make distuitls upload/register use HTML standards compliant CRLF.R David Murray2014-09-272-6/+5
| | | | Patch by Ian Cordasco, approved by Éric Araujo.
* test_distutils: remove the test file in DistributionTestCase.test_debug_mode()Victor Stinner2014-09-111-1/+2
| | | | Fix the warning: "test_support.TESTFN was modified by test_distutils".
* Issue #21923: Prevent AttributeError in distutils.sysconfig.customize_compilerNed Deily2014-07-062-1/+23
| | | | due to possible uninitialized _config_vars. Original patch by Alex Gaynor.
* bump to 2.7.8v2.7.8Benjamin Peterson2014-06-301-1/+1
|
* Issue #21811: Anticipated fixes to 3.x and 2.7 for OS X 10.10 Yosemite.Ned Deily2014-06-251-2/+10
|
* Issue #21722: The distutils "upload" command now exits with a non-zero ↵Antoine Pitrou2014-06-192-8/+18
| | | | | | return code when uploading fails. Patch by Martin Dengler.
* bump to 2.7.7 finalBenjamin Peterson2014-05-311-1/+1
|
* bump to 2.7.7rc1v2.7.7rc1Benjamin Peterson2014-05-181-1/+1
|
* - Issue #17752: Fix distutils tests when run from the installed location.doko@ubuntu.com2014-05-071-1/+1
|
* Make distutils error messages more helpful (#11599).Éric Araujo2014-03-131-18/+45
| | | | | | | | | | When running external programs such as a C compiler and getting an error code, distutils only prints the program name. With this change, one can get the full command line by setting the DISTUTILS_DEBUG environment variable. This should have no compatibility issues, unless there are tools that depend on the exact format of distutils debug messages.
* Fix missing import in bdist_rpm (#18045)Éric Araujo2014-03-121-0/+1
|
* Restore missing part of error message (#4931)Éric Araujo2014-03-121-1/+1
|
* Avoid “error: None” messages from distutils (#4931).Éric Araujo2014-03-124-29/+17
| | | | Thanks to Amaury Forgeot d’Arc and Philip J. Eby.
* Issue #12226: HTTPS is now used by default when connecting to PyPI.Antoine Pitrou2013-12-223-5/+5
|
* Issue #19492: Silently skipped distutils tests now reported as skipped.Serhiy Storchaka2013-12-1810-69/+37
|
* Issue #19600: Use specific asserts in distutils tests.Serhiy Storchaka2013-11-1615-36/+36
|
* Issue #12853: Correct NameError in distutils upload command.Jason R. Coombs2013-11-161-1/+1
|
* merge 2.7.6 release branchBenjamin Peterson2013-11-101-1/+1
|\
| * 2.7.6 finalv2.7.6Benjamin Peterson2013-11-101-1/+1
| |
* | Issue #19286: [distutils] Only match files in build_py.find_data_files.Jason R. Coombs2013-11-021-1/+2
| |
* | Issue #19286: Adding test demonstrating the failure when a directory is ↵Jason R. Coombs2013-11-021-0/+31
|/ | | | found in the package_data globs.
* 2.7.6rc1v2.7.6rc1Benjamin Peterson2013-10-261-1/+1
|
* Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except ↵Antoine Pitrou2013-09-301-7/+21
| | | | | | when necessary. Patch by Oscar Benjamin.
* condense two tests with the same name (closes #19114)Benjamin Peterson2013-09-291-13/+12
|
* Issue #4366: Fix building extensions on all platforms when --enable-shared ↵Antoine Pitrou2013-09-281-5/+3
| | | | is used.
* #18741: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-172-2/+2
|
* Issue #18080: When building a C extension module on OS X, if the compilerNed Deily2013-05-282-3/+41
| | | | | | is overriden with the CC environment variable, use the new compiler as the default for linking if LDSHARED is not also overriden. This restores Distutils behavior introduced in 2.7.3 and inadvertently dropped in 2.7.4.
* bump version to 2.7.5Benjamin Peterson2013-05-121-1/+1
|
* - Issue #13150, #17512: sysconfig no longer parses the Makefile and config.hdoko@ubuntu.com2013-04-081-59/+4
| | | | | files when imported, instead doing it at build time. This makes importing sysconfig faster and reduces Python startup time by 20%.
* change version to 2.7.4v2.7.4Benjamin Peterson2013-04-061-1/+1
|
* version to 2.7.4rc1v2.7.4rc1Benjamin Peterson2013-03-231-1/+1
|
* backout 66e30c4870bb for breaking OSX (#13150)Benjamin Peterson2013-03-221-4/+59
|
* - Issue #13150: sysconfig no longer parses the Makefile and config.h filesdoko@ubuntu.com2013-03-211-59/+4
| | | | | when imported, instead doing it at build time. This makes importing sysconfig faster and reduces Python startup time by 20%.