summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2644 from tirkarthi/fix-threadingJason R. Coombs2021-04-241-1/+1
|\ | | | | Set daemon attribute instead of using setDaemon method that was deprecated in Python 3.10
| * Set daemon attribute instead of using setDaemon method that was deprecated ↵Karthikeyan Singaravelan2021-04-171-1/+1
| | | | | | | | in Python 3.10
* | Add rfc822_unescapeMarc Mueller2021-04-102-1/+60
| |
* | Refactor dist.read_pkg_fileMarc Mueller2021-04-101-28/+36
|/
* Use importlib.util.spec_from_loader in find_specSviatoslav Sydorenko2021-04-091-2/+2
|
* Drop deprecated `find_module` from vendor importerSviatoslav Sydorenko2021-04-081-8/+0
|
* Implement `find_spec` in vendored module importersSviatoslav Sydorenko2021-04-081-6/+15
| | | | | | | | | | | | | | | This change makes the import warning emitted by Python 3.10 disappear but implementing the hook that is supposed to replace the old import mechanism. Refs: * https://bugs.python.org/issue42134 * https://bugs.python.org/issue43540 * https://github.com/pypa/setuptools/issues/2632#issuecomment-815701078 Fixes #2632 Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* Small changesMarc Mueller2021-04-032-2/+4
|
* Change deprecation warningMarc Mueller2021-04-031-4/+3
|
* Additional test casesMarc Mueller2021-04-031-3/+62
|
* license_files - Add support for glob patterns + add default patternsMarc Mueller2021-04-033-23/+35
|
* Merge pull request #2621 from cdce8p/fix-testsJason R. Coombs2021-04-031-1/+1
|\ | | | | Test - Fix url for pip download
| * Tests - Fix url for pip downloadMarc Mueller2021-03-281-1/+1
| |
* | Merge pull request #2566 from hroncok/remove_bdist_wininstJason R. Coombs2021-03-304-55/+3
|\ \ | |/ |/| Remove bdist_wininst, Filter out distutils deprecation
| * Remove bdist_wininstMiro Hrončok2021-03-084-55/+3
| | | | | | | | Fixes https://github.com/pypa/setuptools/issues/2558
* | remove duplicate wordJürgen Gmach2021-03-241-1/+1
| |
* | Merge pull request #2608 from layday/pep517-better-error-on-missing-distJason R. Coombs2021-03-222-1/+17
|\ \ | | | | | | build_meta: produce informative error when a dist is not found
| * | Remove superfluous else.Jason R. Coombs2021-03-221-2/+1
| | |
| * | fixup! build_meta: produce informative error when a dist is not foundlayday2021-03-211-2/+4
| | |
| * | fixup! fixup! build_meta: produce informative error when a dist is not foundlayday2021-03-212-7/+4
| | |
| * | build_meta: produce informative error when a dist is not foundlayday2021-03-162-2/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, when `build_sdist` or `build_wheel` were unable to build a distribution (and were therefore unable to find the distribution file), they would throw a ValueError: not enough values to unpack (expected 1, got 0) which did not offer any clues as to where the issue might lie.
* | | Expect failure on PyPy.feature/restore-editable-pythonpathJason R. Coombs2021-03-211-0/+4
| | |
* | | Cast values to str and retain other environ vars for Windows' sakeJason R. Coombs2021-03-211-1/+3
| | |
* | | Illustrate how one might leverage sitecustomize.py to make a project ↵Jason R. Coombs2021-03-211-12/+30
| | | | | | | | | | | | available on PYTHONPATH. Fixes #2612.
* | | Add test capturing missed expectation. Ref #2612.Jason R. Coombs2021-03-202-0/+44
|/ /
* | Fix formatting of tests and change dash deprecation method nameMelissa Li2021-03-082-10/+10
| |
* | Reduce scope of dash deprecation warning to Setuptools and distutilsMelissa Li2021-03-081-0/+8
|/
* Don't bother testing old versions of pip on Python 3.10 and later. Fixes #2599.Jason R. Coombs2021-03-071-3/+8
|
* Apply suggestions in code review.Jason R. Coombs2021-03-062-13/+15
| | | | Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
* Test for uppercase metadata warningMelissa Li2021-03-051-0/+18
|
* Warn for uppercase usage in setup.cfg metadataMelissa Li2021-03-051-0/+12
|
* Dash to underscore compatibilityMelissa Li2021-03-031-1/+1
|
* Update warning for dash to underscore conversionMelissa Li2021-03-031-11/+9
|
* Add test for dash preserved extras_require in setup.cfgMelissa Li2021-03-021-0/+14
|
* Add test for conversion warningMelissa Li2021-03-021-0/+19
|
* Modify existing tests to be compatible with future underscore changeMelissa Li2021-03-023-4/+4
|
* Add compatibility method to warn for future underscore changeMelissa Li2021-03-021-1/+16
|
* Merge pull request #2582 from pypa/feature/2550-build-from-sourceJason R. Coombs2021-02-281-6/+16
|\ | | | | Rely on backend build path and bootstrap metadata to easily build from source
| * Rely more on pytest param to append markers.feature/2550-build-from-sourceJason R. Coombs2021-02-271-12/+7
| |
| * Prefer xfail to skip on known failure mode.Jason R. Coombs2021-02-271-7/+20
| |
| * Remove pip 19 from the upgrade from source tests.Jason R. Coombs2021-02-271-1/+3
| |
* | test check_specifierMelissa Li2021-02-281-0/+13
| |
* | handle AttributeError by raising DisutilsSetupError in check_specifierMelissa Li2021-02-281-1/+1
|/
* Merge pull request #2571 from makeroo/mainJason R. Coombs2021-02-252-0/+41
|\ | | | | Correctly parse cmdclass in setup.cfg. Fixes #2570
| * Correctly parse cmdclass in setup.cfg. Fixes #2570Simone Pierazzini2021-02-182-0/+41
| |
* | Merge pull request #2574 from pypa/jaraco-path-buildJason R. Coombs2021-02-259-109/+65
|\ \ | | | | | | Use file builder from jaraco.path
| * | Use path builder in upload_docs tests.jaraco-path-buildJason R. Coombs2021-02-202-34/+24
| | |
| * | Merge branch 'main' into jaraco-path-buildJason R. Coombs2021-02-203-4/+46
| |\ \
| * | | 👹 Feed the hobgoblins (delint).Jason R. Coombs2021-02-201-4/+8
| | | |
| * | | Switch to jaraco.path for building filesJason R. Coombs2021-02-207-73/+35
| | |/ | |/|