aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bump version: 46.4.0 → 47.0.0v47.0.0Jason R. Coombs2020-05-285-4/+9
|
* Extract _parents function and _set_egg method. Reword comment.Jason R. Coombs2020-05-281-12/+21
|
* Merge pull request #2151 from Carreau/fix-docJason R. Coombs2020-05-281-1/+1
|\ | | | | DOC: fix link missing >
| * DOC: fix link missing >Matthias Bussonnier2020-05-271-1/+1
|/ | | | | The `decalrative config`_ link present higher in the document is also unresolved, I'm not quite sure what the intended target was.
* Use new link to sunset page. Ref #2134.Jason R. Coombs2020-05-261-1/+1
|
* Merge pull request #2134 from pypa/feature/python-2-sunset-docsJason R. Coombs2020-05-265-18/+84
|\ | | | | Crash under Python 2
| * s/respectful/considerate of those projects/Jason R. Coombs2020-05-251-5/+5
| |
| * Wrap lines and remove newlines between enumerated paragraphs.Jason R. Coombs2020-05-251-17/+51
| |
| * Add changelog entry.Jason R. Coombs2020-05-251-0/+1
| |
| * Reword and simplify note about supported versions.Jason R. Coombs2020-05-251-1/+1
| |
| * Prefer imperative voiceJason R. Coombs2020-05-241-3/+3
| |
| * Force fail on Python 2. When doing so, emit an error that directs users to ↵Jason R. Coombs2020-05-243-17/+8
| | | | | | | | the latest guidance. Fixes #2094.
| * Add landing page for Python 2 sunset. Ref #2094.Jason R. Coombs2020-05-242-0/+40
| |
* | Merge pull request #2121 from wimglenn/docsJason R. Coombs2020-05-251-1/+1
|\ \ | | | | | | Give a less confusing example for requirements parsing
| * | use a less confusing example for requirements parsingwim glenn2020-05-191-1/+1
| |/
* | Merge pull request #1802 from pganssle/docs_ciJason R. Coombs2020-05-241-0/+2
|\ \ | | | | | | Run docs build as part of CI
| * \ Merge branch 'master' into docs_ciJason R. Coombs2020-05-24144-3439/+5661
| |\ \ | |/ / |/| |
* | | Merge pull request #1765 from venthur/fix/1700Jason R. Coombs2020-05-243-169/+347
|\ \ \ | |_|/ |/| | Moved distutils' doc for setup-keywords into our doc to document all supported keywords
| * | Merge branch 'master' into fix/1700Bastian Venthur2020-02-11114-2549/+3480
| |\ \
| * \ \ Merge branch 'master' into fix/1700Jason R. Coombs2019-10-2636-159/+859
| |\ \ \
| * | | | Added meat to obsoletes and provides, removed that they should not be used.Bastian Venthur2019-05-181-3/+39
| | | | |
| * | | | s/favour/favor/Bastian Venthur2019-05-181-1/+1
| | | | | | | | | | | | | | | Co-Authored-By: Benoit Pierre <benoit.pierre@gmail.com>
| * | | | s/requires/provides/Bastian Venthur2019-05-181-2/+2
| | | | |
| * | | | Made keywords a subpage (via include directive) maintaining the oldBastian Venthur2019-05-183-13/+5
| | | | | | | | | | | | | | | | | | | | structure
| * | | | added long_description_content_typeBastian Venthur2019-05-181-0/+4
| | | | |
| * | | | added use_2to3_exclude_fixersBastian Venthur2019-05-181-0/+3
| | | | |
| * | | | Added ext_packageBastian Venthur2019-05-181-0/+4
| | | | |
| * | | | Added unused requires, obsolete and requires for completenesBastian Venthur2019-05-181-0/+17
| | | | |
| * | | | Maintain old header and link to new keywords documentBastian Venthur2019-05-162-0/+9
| | | | |
| * | | | Added warnings for data_files, setup_requires and dependency_linksBastian Venthur2019-05-161-0/+15
| | | | |
| * | | | Added changelog fragmentBastian Venthur2019-05-161-0/+1
| | | | |
| * | | | Transcibed all keywords from ↵Bastian Venthur2019-05-161-1/+88
| | | | | | | | | | | | | | | | | | | | https://docs.python.org/3/distutils/apiref.html#distutils.core.setup
| * | | | Fixed broken implicit linksBastian Venthur2019-05-162-18/+26
| | | | |
| * | | | Moved keywords section into separate document, added link in indexBastian Venthur2019-05-163-173/+173
| | | | |
* | | | | Bump version: 46.3.1 → 46.4.0v46.4.0Jason R. Coombs2020-05-164-6/+11
| | | | |
* | | | | Merge pull request #1753 from jwodder/feature/literal_attrJason R. Coombs2020-05-164-14/+87
|\ \ \ \ \ | | | | | | | | | | | | Support attr directive with static evaluation
| * | | | | Disable test on Python 2.Jason R. Coombs2020-05-162-2/+7
| | | | | |
| * | | | | Try constructing the fake package at the beginning of the test.Jason R. Coombs2020-05-161-12/+14
| | | | | |
| * | | | | Update test to create separate subpackages. Hoping that avoids issues with ↵Jason R. Coombs2020-05-161-10/+8
| | | | | | | | | | | | | | | | | | | | | | | | caching.
| * | | | | Delete packages from sys.modulesJason R. Coombs2020-05-161-0/+5
| | | | | |
| * | | | | Fix error in StaticModule implementation.Jason R. Coombs2020-05-161-1/+1
| | | | | |
| * | | | | Alter test so it actually triggers the intended behavior.Jason R. Coombs2020-05-161-2/+2
| | | | | |
| * | | | | Fix importsJason R. Coombs2020-05-161-2/+2
| | | | | |
| * | | | | Extract StaticModule and patch_path helpers.Jason R. Coombs2020-05-162-43/+47
| | | | | |
| * | | | | Merge `literal_attr:` functionality into `attr:`John T. Wodder II2020-05-154-116/+57
| | | | | |
| * | | | | Added changelog.d news fragmentJohn T. Wodder II2020-05-151-0/+1
| | | | | |
| * | | | | Update documentationJohn T. Wodder II2020-05-151-8/+17
| | | | | |
| * | | | | Implement a "literal_attr:" config directiveJohn T. Wodder II2020-05-152-9/+117
| | | | | |
* | | | | | Merge pull request #2113 from webknjaz/patch-1Jason R. Coombs2020-05-161-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Fix an RST link typo in the dev guide
| * | | | | Fix an RST link typo in the dev guideSviatoslav Sydorenko2020-05-151-1/+1
|/ / / / /