summaryrefslogtreecommitdiff
path: root/setuptools/tests
Commit message (Collapse)AuthorAgeFilesLines
* Refactor test_setup_requires_with_allow_hosts to re-use path.buildJason R. Coombs2021-09-061-17/+16
|
* Include trailing quote in build-backend for test_build_meta. Fixes #2771.Jason R. Coombs2021-09-061-2/+2
|
* 👹 Feed the hobgoblins (delint).Jason R. Coombs2021-09-042-3/+0
|
* remove lib2to3 usageThomas Grainger2021-09-044-366/+165
|
* Merge pull request #2712 from darkvertex/data_files_glob_directiveJason R. Coombs2021-08-261-0/+35
|\ | | | | Implement #1681 (globbing support for `[options.data_files]`)
| * globbing for [options.data_files]: Remove special treatment for filenames ↵Alan Fregtman2021-07-211-3/+0
| | | | | | | | with globby characters that exist literally.
| * Update globbing for [options.data_files] to be implicit, not requiring a ↵Alan Fregtman2021-07-211-3/+6
| | | | | | | | custom directive.
| * Implement "glob:" directive for declarative "data_files" option.Alan Fregtman2021-06-301-0/+35
| |
* | Fix extension in testSteve Dower2021-07-121-1/+1
| |
* | Override PyPy case in testSteve Dower2021-07-121-1/+11
| |
* | Fixes #2722: Adds an environment variable SETUPTOOLS_EXT_SUFFIX to override ↵Steve Dower2021-07-101-0/+26
|/ | | | the suffix inferred from the host Python runtime.
* Fix flaky testMarc Mueller2021-05-231-5/+3
|
* Keep user sorting for license filesMarc Mueller2021-05-231-5/+21
|
* Overwrite exlude from MANIFEST with license_files optionMarc Mueller2021-05-231-5/+6
| | | | | * needed for 'License-File' metadata, as this is written before MANIFEST is read
* Add License-File field to package metadataMarc Mueller2021-05-232-1/+29
|
* Changes after rebaseMarc Mueller2021-05-222-4/+4
|
* Small changes after reviewMarc Mueller2021-05-221-5/+1
|
* Fix testsMarc Mueller2021-05-221-2/+8
|
* Write long description in message payloadMarc Mueller2021-05-221-0/+21
|
* Fix misc. doc typosluz paz2021-05-143-4/+4
| | | Found via `codespell`
* Remove hard-coded indexes of metadata lines. Ref #2641.Jason R. Coombs2021-05-091-3/+5
|
* Merge pull request #2641 from cdce8p/mv-versionJason R. Coombs2021-05-092-8/+22
|\ | | | | Always use latest metadata version for PKG-INFO
| * Always use latest mv version for PKG-INFOMarc Mueller2021-04-162-8/+22
| |
* | Merge pull request #2640 from cdce8p/licenseJason R. Coombs2021-05-092-0/+35
|\ \ | | | | | | Add escaping to license field
| * | Add escaping to license fieldMarc Mueller2021-04-162-0/+35
| |/
* | 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-101-0/+40
|/
* Small changesMarc Mueller2021-04-031-2/+1
|
* Additional test casesMarc Mueller2021-04-031-3/+62
|
* license_files - Add support for glob patterns + add default patternsMarc Mueller2021-04-032-2/+3
|
* 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-301-23/+0
|\ \ | |/ |/| Remove bdist_wininst, Filter out distutils deprecation
| * Remove bdist_wininstMiro Hrončok2021-03-081-23/+0
| | | | | | | | Fixes https://github.com/pypa/setuptools/issues/2558
* | Merge pull request #2608 from layday/pep517-better-error-on-missing-distJason R. Coombs2021-03-221-0/+11
|\ \ | | | | | | build_meta: produce informative error when a dist is not found
| * | fixup! fixup! build_meta: produce informative error when a dist is not foundlayday2021-03-211-4/+1
| | |
| * | build_meta: produce informative error when a dist is not foundlayday2021-03-161-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-081-8/+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-061-2/+3
| | | | Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
* Test for uppercase metadata warningMelissa Li2021-03-051-0/+18
|
* 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-022-3/+3
|
* 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