summaryrefslogtreecommitdiffstats
path: root/Doc/distutils
Commit message (Collapse)AuthorAgeFilesLines
* gh-85454: Remove distutils documentation (#95239)Christian Heimes2022-07-2513-4359/+0
| | | | Most places now refer to setuptools or link to setuptools documentation. Some examples like zipapp need to be updated later.
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers ↵Ned Batchelder2022-07-051-1/+1
| | | | | (GH-94551) Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021
* gh-93851: Fix all broken links in Doc/ (GH-93853)Oleg Iarygin2022-06-211-1/+1
|
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-301-1/+1
|
* bpo-46044: Fix doc typo introduced in GH-30043 (GH-30171)Matthias Bussonnier2021-12-181-1/+1
| | | | | | | See https://github.com/python/cpython/pull/30043/files#r770944718 My bad I likely messed up by using a repeat command in my editor Automerge-Triggered-By: GH:merwok
* bpo-46044: Annotate deprecated sdists formats (GH-30043)Matthias Bussonnier2021-12-161-19/+22
| | | | | | While this page have deprecated informations it is still heavily index by Google. Discussed on twitter: https://twitter.com/brettsky/status/1469465729082662916
* bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515)Serhiy Storchaka2021-09-221-4/+4
| | | | | | | Replace old names when they refer to actual versions of macOS. Keep historical names in references to older versions. Co-authored-by: Patrick Reader <_@pxeger.com>
* bpo-45124: Remove the bdist_msi command (GH-28195)Hugo van Kemenade2021-09-072-21/+0
| | | | The bdist_msi command, deprecated in Python 3.9, is now removed. Use bdist_wheel (wheel packages) instead.
* bpo-41282: (PEP 632) Deprecate distutils.sysconfig (partial implementation ↵Lumír 'Frenzy' Balhar2021-04-231-0/+5
| | | | | | | | | | of the PEP) (GH-23142) This change: * merges `distutils.sysconfig` into `sysconfig` while keeping the original functionality and * marks `distutils.sysconfig` as deprecated https://bugs.python.org/issue41282
* bpo-41282: Add deprecation warning and docs for distutils (PEP 632) (GH-24355)Steve Dower2021-01-291-0/+7
|
* bpo-42802: Remove distutils bdist_wininst command (GH-24043)Victor Stinner2021-01-084-114/+2
| | | | | | | | | | The distutils bdist_wininst command deprecated in Python 3.8 has been removed. The distutils bidst_wheel command is now recommended to distribute binary packages on Windows. * Remove Lib/distutils/command/bdist_wininst.py * Remove PC/bdist_wininst/ project * Remove Lib/distutils/command/wininst-*.exe programs * Remove all references to bdist_wininst
* bpo-39586: Deprecate distutils bdist_msi command (GH-18415)Hugo van Kemenade2020-02-102-0/+12
|
* bpo-38914 Do not require email field in setup.py. (GH-17388)Jürgen Gmach2019-12-231-1/+1
| | | | | | | | | | | | | | | | | | When checking `setup.py` and when the `author` field was provided, but the `author_email` field was missing, erroneously a warning message was displayed that the `author_email` field is required. The specs do not require the `author_email`field: https://packaging.python.org/specifications/core-metadata/#author The same is valid for `maintainer` and `maintainer_email`. The warning message has been adjusted. modified: Doc/distutils/examples.rst modified: Lib/distutils/command/check.py https://bugs.python.org/issue38914
* bpo-38021: Modify AIX platform_tag so it covers PEP 425 needs (GH-17303)Michael Felt2019-12-151-0/+18
| | | | | | | | Provides a richer platform tag for AIX that we expect to be sufficient for PEP 425 binary distribution identification. Any backports to earlier Python versions will be handled via setuptools. Patch by Michael Felt.
* bpo-21063: Improve module synopsis for distutils (GH-17363)Sanchit Khurana2019-11-251-5/+5
|
* bpo-38103: fix conflicting labels in the docs. (GH-15906)Ezio Melotti2019-09-111-3/+3
|
* bpo-36797: Fix a dead link in Doc/distutils/apiref (GH-15700)Miro Hrončok2019-09-051-2/+2
| | | https://bugs.python.org/issue36797
* bpo-37481: Deprecate distutils bdist_wininst command (GH-14553)Victor Stinner2019-07-052-0/+12
| | | | The distutils bdist_wininst command is now deprecated, use bdist_wheel (wheel packages) instead.
* bpo-10945: Drop support for bdist_wininst on non-Windows systems (GH-14506)Miro Hrončok2019-07-011-2/+2
| | | | | | | | | | | bdist_wininst depends on MBCS codec, unavailable on non-Windows, and bdist_wininst have not worked since at least Python 3.2, possibly never on Python 3. Here we document that bdist_wininst is only supported on Windows, and we mark it unsupported otherwise to skip tests. Distributors of Python 3 can now safely drop the bdist_wininst .exe files without the need to skip bdist_wininst related tests.
* bpo-21536: On Cygwin, C extensions must be linked with libpython (GH-13549)E. M. Bray2019-05-241-1/+1
| | | | | | | | | | It is also possible to link against a library or executable with a statically linked libpython, but not both with the same DLL. In fact building a statically linked python is currently broken on Cygwin for other (related) reasons. The same problem applies to other POSIX-like layers over Windows (MinGW, MSYS) but Python's build system does not seem to attempt to support those platforms at the moment.
* bpo-36797: Reduce levels of indirection in outdated distutils docs (#13462)Nick Coghlan2019-05-233-6/+5
|
* bpo-36797: Prune more legacy distutils documentation (GH-13092)Nick Coghlan2019-05-1411-4/+37
| | | | | | Removes more legacy distutils documentation, and more clearly marks what is left as potentially outdated, with references to setuptools as a replacement.
* bpo-33071: remove outdated PyPI docs (GH-13087)Kojo Idrissa2019-05-102-243/+6
| | | Patch by Kojo Idrissa.
* Doc: Fix missing bracket (GH-13163)Zhaorong Ma2019-05-081-1/+1
|
* bpo-21536: On Android, C extensions are linked to libpython (GH-12989)xdegaye2019-04-291-1/+2
|
* bpo-21536: C extensions are no longer linked to libpython (GH-12946)Victor Stinner2019-04-251-0/+4
| | | | | | | | | | | | | | On Unix, C extensions are no longer linked to libpython. It is now possible to load a C extension built using a shared library Python with a statically linked Python. When Python is embedded, libpython must not be loaded with RTLD_LOCAL, but RTLD_GLOBAL instead. Previously, using RTLD_LOCAL, it was already not possible to load C extensions which were not linked to libpython, like C extensions of the standard library built by the "*shared*" section of Modules/Setup. distutils, python-config and python-config.py have been modified.
* bpo-25592: Improve documentation of distutils data_files (GH-9767)jdemeyer2019-01-301-11/+14
|
* Add missing period in distutils.dep_util.newer_group doc (GH-11003)Andre Delfino2018-12-061-1/+1
|
* bpo-35110: Fix yet few spaces before dashes. (GH-10255)Serhiy Storchaka2018-10-311-2/+2
|
* bpo-35110: Fix unintentional spaces around hyphens and dashes. (GH-10231)Serhiy Storchaka2018-10-312-7/+8
|
* bpo-35042: Use the :pep: role where a PEP is specified (#10036)Stéphane Wirtel2018-10-261-3/+3
|
* bpo-35027, distutils doc: Correct note on setup.py change in Python 3.7 ↵TilmanK2018-10-241-3/+2
| | | | (GH-10032)
* bpo-34962: make doctest in Doc/ now passes, and is enforced in CI (GH-9806)Stéphane Wirtel2018-10-121-1/+1
|
* bpo-33892: Doc: Use gender neutral words (GH-7770)Andrés Delfino2018-06-182-2/+2
|
* bpo-33503: Fix the broken pypi link in the source and the documentation ↵Stéphane Wirtel2018-05-153-3/+3
| | | | (GH-6814)
* bpo-33297: Mention Pillow to work with more image formats. (#6505)Andrés Delfino2018-04-211-2/+2
| | | | Also update PIL doc references to Pillow.
* Improve highlighting of some code blocks. (GH-6401)Serhiy Storchaka2018-04-082-8/+22
|
* bpo-25910: Link redirections in docs (#1933)Sanyam Khurana2018-01-202-2/+2
| | | Fixes some redirection links in docs.
* bpo-19610: Warn if distutils is provided something other than a list to some ↵Neil Schemenauer2017-12-051-3/+3
| | | | | | | | | | | | | | | fields (#4685) * Rather than raise TypeError, warn and call list() on the value. * Fix tests, revise NEWS and whatsnew text. * Revise documentation, a string is okay as well. * Ensure 'requires' and 'obsoletes' are real lists. * Test that requires and obsoletes are turned to lists.
* bpo-19610: setup() now raises TypeError for invalid types (GH-4519)Berker Peksag2017-11-232-12/+31
| | | | | | The Distribution class now explicitly raises an exception when 'classifiers', 'keywords' and 'platforms' fields are not specified as a list.
* bpo-31569: correct PCBuild/ case to PCbuild/ in build scripts and docs (GH-3711)Stefan Grönke2017-09-251-1/+1
|
* Remove all mention of Windows IA-64 support (GH-3389)Zachary Ware2017-09-062-4/+4
| | | It was mostly removed long ago.
* remove IRIX support (closes bpo-31341) (#3310)Benjamin Peterson2017-09-041-7/+4
| | | See PEP 11.
* bpo-11913: Add README.rst to the distutils standard READMEs list (#563)Ryan Gonzalez2017-04-141-2/+6
|
* distutils docs: Fix a typo (GH-470)Mariatta2017-03-051-1/+1
| | | instanciated -> instantiated
* Issue #29069: Update the default URL of PyPI serverBerker Peksag2016-12-271-1/+1
| | | | Patch by paka.
* Fix spacing after C++ in documentationMartin Panter2016-11-052-2/+2
|
* Issue #26638: Mask undefined CLI options to defeat new Sphinx warningsMartin Panter2016-10-306-39/+39
|
* Issue #26462: Doc: reduce literal_block warnings, fix syntax highlighting.Martin Panter2016-07-263-5/+15
| | | | Patch by Julien Palard.
* Issue #26014: Update 3.x packaging documentation:Ned Deily2016-06-061-1/+5
| | | | | | | - "See also" links to the new docs are now provided in the legacy pages - links to setuptools documentation have been updated (original patch by Susan Sun)