summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Docs: fix urlAnderson Bravalheri2022-09-151-1/+1
|
* Merge pull request #3565 from sblondon/patch-1Jason R. Coombs2022-08-251-1/+1
|\ | | | | Fix towncrier URL
| * Fix towncrier URLsblondon2022-08-251-1/+1
| | | | | | The link to towncrier philosophy section displays a 404 error. So this patch updates the broken URL to the correct one.
* | Merge https://github.com/jaraco/skeletonJason R. Coombs2022-08-251-1/+1
|\ \ | |/ |/|
| * Also update release to v4Jason R. Coombs2022-08-181-1/+1
| |
* | Bump version: 65.2.0 → 65.3.0v65.3.0Anderson Bravalheri2022-08-246-5/+19
| |
* | Use past tense in news entryAnderson Bravalheri2022-08-242-2/+2
| |
* | Prevent accidental name matching in editable hooks (#3562)Anderson Bravalheri2022-08-243-1/+26
|\ \
| * | Add news fragmentAnderson Bravalheri2022-08-241-0/+1
| | |
| * | Prevent accidental partial name matching in editable hooksAnderson Bravalheri2022-08-241-1/+1
| | |
| * | Capture problems with similar names in editable installAnderson Bravalheri2022-08-241-0/+24
| | |
* | | Remove inadvertent splatting of the name attribute (#3547)Anderson Bravalheri2022-08-244-6/+54
|\ \ \
| * | | Fix rst syntax in news fragmentAnderson Bravalheri2022-08-191-1/+1
| | | |
| * | | Fix problems with name discovery and dynamic versionsAnderson Bravalheri2022-08-191-5/+10
| | | |
| * | | Replicate problems with name discovery and dynamic versionsAnderson Bravalheri2022-08-191-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to issue 3545 it seems that "name-discovery" happens, even when the project already explicitly sets it. This is related to parsing of dynamic versions (via `attr` directive), which triggers the auto-discovery to obtain the value of `package_dir`. The value of `package_dir` is used to find the path to the module in `version = {"attr" = "module_name.attr_name"}`.
| * | | Add changelog entry.Benno Rice2022-08-191-0/+1
| | | |
| * | | Remove inadvertent splatting of the name attributeBenno Rice2022-08-191-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The `name` attribute of a `Distribution` object is used by the command-line processing system and is not intended to hold the name of the distribution itself. Setting it to the name will cause the command-line processing system to have a bad time.
| * | | Replicate problems with `setup.py --version` and auto-discoveryAnderson Bravalheri2022-08-191-0/+9
| | | |
* | | | Replace `requires` with `requests` in example (#3554)Anderson Bravalheri2022-08-242-1/+2
|\ \ \ \
| * \ \ \ Merge branch 'main' into patch-1mfbutner2022-08-2110-80/+79
| |\ \ \ \
| | * \ \ \ Merge branch 'pypa:main' into mainMatthew Butner2022-08-219-80/+78
| | |\ \ \ \
| | * | | | | Added a changelog to the pull requestMatthew Butner2022-08-211-0/+1
| | | | | | |
| * | | | | | [Docs] Typo in Dependency Management pyproject.tomlMatthew Butner2022-08-211-1/+1
| |/ / / / / | | | | | | | | | | | | Under the Dependency Management pyproject.toml example, requests was mistyped as requires.
* | | | | | Add changelog to project URLs (#3543)Anderson Bravalheri2022-08-241-0/+1
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | Add changelog to project URLsShantanu2022-08-181-0/+1
| | |/ / / | |/| | | | | | | | This will make my life a little easier
* | | | | Bump version: 65.1.1 → 65.2.0v65.2.0Jason R. Coombs2022-08-214-3/+11
| | | | |
* | | | | Merge pull request #3553 from pypa/distutils-22b9bcfJason R. Coombs2022-08-217-78/+68
|\ \ \ \ \ | |_|/ / / |/| | | | Merge with pypa/distutils@22b9bcf
| * | | | Update changelogJason R. Coombs2022-08-211-0/+1
| | | | |
| * | | | Merge https://github.com/pypa/distutils into distutils-22b9bcfJason R. Coombs2022-08-216-78/+67
| |\ \ \ \ |/ / / / /
| * | | | Merge pull request pypa/distutils#173 from rnhmjoj/mainJason R. Coombs2022-08-211-3/+12
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Fix, again, finding headers during cross compiling
| | * | | | Add unit tests capturing the expectationJason R. Coombs2022-08-211-0/+10
| | | | | |
| | * | | | Fix, again, finding headers during cross compilingrnhmjoj2022-08-211-3/+2
| | | | | |
| * | | | | In cygwincompiler, re-use object_filenames from ccompiler.Jason R. Coombs2022-08-211-23/+14
| | | | | |
| * | | | | Remove _msvccompiler._make_out_path.Jason R. Coombs2022-08-211-17/+0
| | | | | | | | | | | | | | | | | | | | | | | | The function is almost entirely redundant to the implementation in the parent class. The only difference is the order in which `strip_dir` is processed, but even there, it doesn't appear as if `strip_dir` is ever True, so take the risk and consolidate behavior.
| * | | | | Deprecate bcppcompiler.Jason R. Coombs2022-08-212-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | Support for Borland C++ compiler was dropped for compiling Python in python/cpython#66782 (2014) and the borlandc.org web site no longer references a compiler. Best I can tell, this compiler hasn't been released for 22 years. Surely no one is using it.
| * | | | | Extract property for out_extensions in _msvccompilerJason R. Coombs2022-08-211-4/+7
| | | | | |
| * | | | | Extract property for mapping src extensions to out extensions.Jason R. Coombs2022-08-211-2/+8
| | | | | |
| * | | | | In _msvccompiler, re-use _make_relative.Jason R. Coombs2022-08-211-3/+1
| | | | | |
| * | | | | In _msvccompiler, only override _make_out_pathJason R. Coombs2022-08-211-24/+18
| | | | | |
| * | | | | Extract method for _make_out_path.Jason R. Coombs2022-08-211-12/+15
| | | | | |
| * | | | | In _make_relative, remove deprecation warning. Ref pypa/distutils#169.Jason R. Coombs2022-08-211-11/+1
| | | | | |
| * | | | | Rename _mangle_base to _make_relative and add documentation about its ↵Jason R. Coombs2022-08-212-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | purpose. Ref pypa/distutils#169.
| * | | | | Suppress warnings in deprecated msvc compilersJason R. Coombs2022-08-161-0/+3
| |/ / / /
* | | | | Merge pull request #3552 from 0x2b3bfa0/patch-1Anderson Bravalheri2022-08-211-1/+1
|\ \ \ \ \ | |_|_|/ / |/| | | | Fix typo in docs/userguide/extension.rst
| * | | | Fix typo in docs/userguide/extension.rstHelio Machado2022-08-211-1/+1
|/ / / /
* | | | Bump version: 65.1.0 → 65.1.1v65.1.1Anderson Bravalheri2022-08-214-4/+12
| | | |
* | | | Improve news fragmentAnderson Bravalheri2022-08-211-1/+1
| | | |
* | | | Add news fragmentAnderson Bravalheri2022-08-211-0/+2
| | | |
* | | | Limit number of string replacementsAnderson Bravalheri2022-08-211-1/+5
| | | |
* | | | Fix recursion problem in finderAnderson Bravalheri2022-08-212-2/+3
| | | |