summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve error messages for pyproject.toml validation (#3838)Anderson Bravalheri2023-03-061-8/+8
|\
| * Improve error messages for pyproject.toml validationAnderson Bravalheri2023-02-271-8/+8
| |
* | Fixed interaction between discovery and htmlcov (#3836)Anderson Bravalheri2023-03-062-1/+2
|\ \
| * | Remove htmlcov from auto **module** discoveryAnderson Bravalheri2023-02-271-1/+0
| | | | | | | | | | | | | | | | | | It seems that it was previously added there by mistake. After some inspection ``htmlcov`` should be a folder (by default) and therefore can only be confused by a package (not a module)
| * | Hotfix add htmlcov to FlatLayoutPackageFinder.DEFAULT_EXCLUDEYukihiko Shinoda2023-02-231-1/+2
| | |
| * | Add FlatLayoutPackageFinder's test for Coverage.pyYukihiko Shinoda2023-02-231-0/+1
| |/
* | Simplify _section_options using str.partition and a generator.Jason R. Coombs2023-03-051-11/+5
| |
* | Extract method for _section_options.Jason R. Coombs2023-03-051-10/+14
| |
* | Resolve setter once.Jason R. Coombs2023-03-051-5/+3
| |
* | Trap exception directly instead of tracking with boolean.Jason R. Coombs2023-03-051-12/+3
| |
* | Rename value to avoid masking variable.Jason R. Coombs2023-03-051-3/+3
| |
* | Use try/except in __setitem__.Jason R. Coombs2023-03-051-4/+3
| |
* | ⚫ Fade to black.Jason R. Coombs2023-03-051-13/+21
| |
* | Deprecate pkg_resources, removing excuse that 'discouraged is not deprecated'.Jason R. Coombs2023-03-051-6/+3
|/
* Update vendored importlib-* (#3832)Anderson Bravalheri2023-02-2137-485/+1082
|\
| * Update vendored importlib_*Anderson Bravalheri2023-02-1737-485/+1082
| |
* | Merge https://github.com/pypa/distutils into distutils-4435cec3Jason R. Coombs2023-02-202-4/+4
|/
* Fix error when integrating with pipAnderson Bravalheri2023-02-141-1/+2
|
* Small rewording for user-facing text/docsAnderson Bravalheri2023-02-132-2/+2
|
* Add a DeprecationWarning to pkg_resources.declare_namespace (#3434)Anderson Bravalheri2023-02-131-1/+3
|\
| * Add links explaining deprecationsAnderson Bravalheri2023-02-131-1/+3
| |
* | Reduce usage of pkg_resources (#3792)Anderson Bravalheri2023-02-1314-139/+298
|\ \
| * | Allow None to be passed to egg_basenameAnderson Bravalheri2023-02-011-2/+2
| | |
| * | Revert to using normalized paths in develop to fix test errorsAnderson Bravalheri2023-01-241-5/+6
| | |
| * | Fix dist-info naming discrepancy in relation to bdist_wheelAnderson Bravalheri2023-01-243-10/+33
| | |
| * | Replace/move _normalization.path with/to _path.samepath and _path.normpathAnderson Bravalheri2023-01-244-26/+30
| | |
| * | Delay imports of pkg_resources in install_scripts.pyAnderson Bravalheri2023-01-241-3/+6
| | |
| * | Centralize usage of pkg_resources from dist.py to installer.pyAnderson Bravalheri2023-01-242-21/+53
| | |
| * | Modify _reqs.py to prefer prefer packaging instead of pkg_resourcesAnderson Bravalheri2023-01-241-5/+19
| | |
| * | Prefer packaging instead for pkg_resources for version in wheel.pyAnderson Bravalheri2023-01-241-2/+3
| | |
| * | Prefer alternative from egg_info.py to pkg_resources.Distribution.egg_nameAnderson Bravalheri2023-01-243-16/+13
| | |
| * | Implement alternative for pkg_resources.Distribution.egg_name in egg_info.pyAnderson Bravalheri2023-01-241-1/+22
| | |
| * | Prefer packaging instead of pkg_resources in dist.py for markersAnderson Bravalheri2023-01-231-2/+12
| | |
| * | Prefer packaging instead of pkg_resources in egg_info.pyAnderson Bravalheri2023-01-231-6/+3
| | |
| * | Prefer setuptools._normalization instead of pkg_resources in egg_info.pyAnderson Bravalheri2023-01-231-5/+6
| | |
| * | Prefer setuptools._normalization and importlib_metadata instead of ↵Anderson Bravalheri2023-01-231-6/+8
| | | | | | | | | | | | pkg_resources in dist.py
| * | Prefer setuptools._normalization instead of pkg_resources in develop.pyAnderson Bravalheri2023-01-231-6/+8
| | |
| * | Extract normalization functions from editable_wheel and dist_info into own ↵Anderson Bravalheri2023-01-233-62/+113
| | | | | | | | | | | | module
| * | Replace pkg_resources in version.pyAnderson Bravalheri2023-01-231-2/+2
| | |
* | | Add test for debugging tipsAnderson Bravalheri2023-02-131-0/+19
| | |
* | | Improve warning messageAnderson Bravalheri2023-02-131-2/+3
| | |
* | | Clarify 'editable_wheel' and 'dist_info' are internal commands onlyAnderson Bravalheri2023-02-132-3/+8
| | |
* | | Use warning in editable since pip hides PEP 678 notesAnderson Bravalheri2023-02-131-8/+6
| | |
* | | Remove editable_wheel "catch all" exceptionAnderson Bravalheri2023-02-131-12/+37
| |/ |/| | | | | … instead add information helping how to debug the problem.
* | Merge https://github.com/pypa/distutils into distutils-8c3c3d29Jason R. Coombs2023-02-0653-111/+152
| |
* | Update generated validation code using validate_pyproject==0.12.1 (#3798)Anderson Bravalheri2023-02-012-49/+83
|\ \
| * | Update generated validation code using validate_pyproject==0.12.1Anderson Bravalheri2023-01-271-75/+77
| | |
| * | Update generated validation code using validate_pyproject==0.12Anderson Bravalheri2023-01-252-80/+112
| |/
* | dedicated testhauntsaninja2023-01-251-16/+18
| |
* | add a testhauntsaninja2023-01-241-0/+16
| |