summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Docs: Add note about global `distutils.cfg` (#3689)Anderson Bravalheri2022-11-231-0/+9
|\
| * Add note about global distutils.cfgAnderson Bravalheri2022-11-171-0/+9
| |
* | Remove unnecessary `coding` comment (#3696)Anderson Bravalheri2022-11-231-1/+0
|\ \
| * | The default encoding of Python sources is UTF-8Dimitri Papadopoulos2022-11-201-1/+0
| |/ | | | | | | | | | | | | Python 3 assumes the encoding is UTF-8 by default, and so do or should do tools such as text editors when opening Python files. No need to explicitly set `*- coding: utf-8 -*-`.
| |
| \
| \
| \
| \
| \
*-----. \ Merge spelling/space improvements (#3695, #3698, #3697, #3699)Anderson Bravalheri2022-11-238-14/+9
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| | | | * Get rid of trailing spaces, mainly in docsDimitri Papadopoulos2022-11-207-11/+6
| |_|_|/ |/| | |
| | | * Remove tabsBas Nijholt2022-11-211-2/+2
| | | |
| | | * Fix spacing in build_meta.rstBas Nijholt2022-11-211-1/+1
| |_|/ |/| |
| | * Fix non-ASCII homoglyph of `v`Dimitri Papadopoulos2022-11-211-1/+1
| |/ |/|
| * Fix typos found by codespellDimitri Papadopoulos2022-11-201-2/+2
|/
* Fix typo in docs/userguide/development_mode (#3664)Anderson Bravalheri2022-11-111-1/+1
|\
| * Minor stylistic changeAnderson Bravalheri2022-11-111-1/+2
| |
| * Fix typo in docs/userguide/development_mode.rstshripadbadithe2022-11-061-2/+1
| |
* | Highlight in docs: `attr` directive needs MANIFEST.in config / SCM plugin ↵Anderson Bravalheri2022-11-102-0/+13
|\ \ | |/ |/| | | (#3662)
| * Highlight in docs: 'attr' directive needs MANIFEST.in config / SCM pluginAnderson Bravalheri2022-11-042-0/+13
| |
* | Improve warnings in editable install (#3569)Anderson Bravalheri2022-11-041-1/+1
|\ \ | |/ |/|
| * Fix misspelling in docs/userguide/development_mode.rstAnderson Bravalheri2022-10-111-1/+1
| |
* | Fix typoMartin Braquet2022-10-211-1/+1
| |
| |
| \
*-. \ Merge PRs #3636 #3634 #3633 #3595 #3576 #3569 #3564Anderson Bravalheri2022-10-141-0/+11
|\ \ \ | | |/
| | * Document CWD limitations in editable docsAnderson Bravalheri2022-08-261-0/+11
| |/
* | Update pyproject_config.rst (#3571)Anderson Bravalheri2022-10-111-1/+1
|\ \
| * | Update pyproject_config.rstPer Jensen2022-08-281-1/+1
| |/ | | | | | | | | The sequence of TOML datatypes and Python datatypes are reversed, which is a bit confusing. I suggest to align the sequence, so that array and table aligns with list and dict
* | Update user guide's example versions to be PEP440-compliant (#3628)Anderson Bravalheri2022-10-111-25/+32
|\ \
| * | Update docs/userguide/distribution.rst Jason Veatch2022-10-101-3/+3
| | | | | | | | | | | | | | | Thanks @abravalheri for this change! Co-authored-by: Anderson Bravalheri <andersonbravalheri+github@gmail.com>
| * | Fix #3419. Update example versions to be PEP440-compliantJason Veatch2022-10-051-21/+28
| | |
* | | Merge https://github.com/jaraco/skeletonJason R. Coombs2022-09-301-0/+1
|\ \ \ | |/ / |/| | | | | | | | # Conflicts: # setup.cfg
| * | Adopt furo theme for docs.Jason R. Coombs2022-09-301-0/+1
| | |
* | | Docs: fix url (#3574)Anderson Bravalheri2022-09-301-1/+1
|\ \ \
| * | | Docs: fix urlAnderson Bravalheri2022-09-151-1/+1
| | |/ | |/|
* | | Merge https://github.com/jaraco/skeletonJason R. Coombs2022-09-261-2/+13
|\ \ \ | | |/ | |/| | | | | | | | | | # Conflicts: # .github/workflows/main.yml # docs/conf.py
| * | When rendering docs, preserve the syntax for defaults. Fixes jaraco/path#197.Jason R. Coombs2022-09-251-2/+10
| | | | | | | | | | | | Incidentally, re-organize the extensions a bit for clarity.
* | | Merge https://github.com/pypa/distutils into distutils-d82d926Jason R. Coombs2022-09-241-1/+2
|\ \ \ | |_|/ |/| |
| * | Rename environment variable to DIST_EXTRA_CONFIG, decoupling it from the ↵Jason R. Coombs2022-09-241-1/+1
| | | | | | | | | | | | name of the implementation.
| * | Add DISTUTILS_EXTRA_CONFIG option for passing setup.cfg overrides during buildSteve Dower2022-09-241-1/+2
| | |
* | | [Docs] Typo in Dependency Management pyproject.tomlMatthew Butner2022-08-211-1/+1
| | | | | | | | | Under the Dependency Management pyproject.toml example, requests was mistyped as requires.
* | | Fix typo in docs/userguide/extension.rstHelio Machado2022-08-211-1/+1
| | |
* | | Correct docs on how to use the `legacy-editable` modeEd Morley2022-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR #3414 added support for disabling the new PEP660 editable install hooks. However the documentation and changelog mentions didn't match the implementation. Before: - The implementation used: `SETUPTOOLS_ENABLE_FEATURES` - The changelog said to use: `SETUPTOOLS_ENABLE_FEATURE` (notice the missing "S") - The docs said to use: `SETUPTOOLS_USE_FEATURE` This caused confusion in #3535, since the testcase there used the form mentioned in the changelog, which doesn't do anything. Now, the changelog and docs both say to use `SETUPTOOLS_ENABLE_FEATURES`.
* | | [Docs] Typo in QuickstartAtiab Bin Zakaria2022-08-171-1/+1
| | |
* | | ocs: Clarify 'setup.py' support on Quickstart (#3529)Anderson Bravalheri2022-08-151-4/+25
|\ \ \
| * | | Clarify 'setup.py' on quistartAnderson Bravalheri2022-08-151-4/+25
| | | |
* | | | Make pkg_resources warning more visibleAnderson Bravalheri2022-08-151-6/+7
|/ / /
* | | Merge pull request #3521 from pypa/distutils-fac564fJason R. Coombs2022-08-144-142/+2
|\ \ \ | | | | | | | | Merge with distutils fac564f
| * \ \ Merge https://github.com/pypa/distutils into distutils-fac564fJason R. Coombs2022-08-134-142/+2
| |\ \ \ | | |/ /
| | * | Merge branch 'main' into debt/remove-bdist_msiJason R. Coombs2022-08-131-3/+0
| | |\ \
| | | * | Remove another reference to wininstJason R. Coombs2022-08-131-3/+0
| | | | |
| | * | | Remove more references to bdist_msiJason R. Coombs2022-08-132-30/+0
| | |/ /
| | * | Remove more references to bdist_wininst.Jason R. Coombs2022-08-134-110/+3
| | | |
* | | | typo fixwim glenn2022-08-131-1/+1
|/ / /
* | | Update keywords note on editable installsEva Maxfield Brown2022-08-121-6/+5
| | |
* | | Remove question markMike Hucka2022-08-121-2/+2
| | | | | | | | | The heading "How editable installations work?" either contains a typo (the question mark should be omitted), or else the question as written is missing a word (it should be "How **do** editable installations work?"). This commit removes the question mark.