summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2712 from darkvertex/data_files_glob_directiveJason R. Coombs2021-08-262-1/+65
|\ | | | | Implement #1681 (globbing support for `[options.data_files]`)
| * config.py: Fix line-too-long warning in _parse_list_glob()Alan Fregtman2021-07-261-1/+1
| |
| * Satisfy some flake8 style checks for the previous commit.Alan Fregtman2021-07-221-2/+2
| |
| * globbing for [options.data_files]: Remove special treatment for filenames ↵Alan Fregtman2021-07-212-16/+4
| | | | | | | | with globby characters that exist literally.
| * Update globbing for [options.data_files] to be implicit, not requiring a ↵Alan Fregtman2021-07-212-11/+23
| | | | | | | | custom directive.
| * 👹 Feed the hobgoblins (delint).Jason R. Coombs2021-07-041-1/+2
| |
| * Implement "glob:" directive for declarative "data_files" option.Alan Fregtman2021-06-302-1/+64
| |
* | Fix broken links in easy_install.pySeungMin Lee2021-07-201-3/+3
| |
* | Merge pull request #2723 from zooba/ext_suffixJason R. Coombs2021-07-182-3/+45
|\ \ | | | | | | Fixes #2722 Adds an environment variable SETUPTOOLS_EXT_SUFFIX
| * | 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-102-3/+35
| | | | | | | | | | | | the suffix inferred from the host Python runtime.
* | | Merge https://github.com/pypa/distutils into arm64Jason R. Coombs2021-07-141-0/+1
|/ /
* | Merge https://github.com/pypa/distutils into feature/distutils-syncJason R. Coombs2021-07-0411-95/+256
| |
* | Merge pull request #2692 from rpurdie/mainJason R. Coombs2021-07-041-1/+7
|\ \ | | | | | | setuptools/dist: Fix reproducibility issue by sorting globbing
| * | Add testJason R. Coombs2021-07-041-0/+6
| | |
| * | Restore the iteratorJason R. Coombs2021-07-041-2/+2
| | |
| * | setuptools/dist: Fix reproducibility issue by sorting globbingRichard Purdie2021-05-311-2/+2
| |/ | | | | | | | | | | | | | | | | | | | | | | | | globbing uses os.listdir() which returns order on disk which is unsorted. Ultimately this leads to random ordering of License-File entries in PKG-INFO and means the resulting output isn't deterministic. Adding a sort fixes that. Switch to glob instead ot iglob since sorted() removes the benefit of an iterator. https://github.com/pypa/setuptools/issues/2691 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* | Remove ssl_support. Fixes #2715.Jason R. Coombs2021-07-042-276/+1
|/
* Merge branch 'main' into feature/more-itertoolsJason R. Coombs2021-05-227-59/+135
|\
| * Fix flaky testMarc Mueller2021-05-231-5/+3
| |
| * Replace for/if/add/extend with generator on patterns. Use unique_everseen to ↵Jason R. Coombs2021-05-231-11/+30
| | | | | | | | dedupe.
| * Revert removal of license_fileMarc Mueller2021-05-231-4/+2
| |
| * Remove license_fileMarc Mueller2021-05-231-2/+4
| |
| * Fix after rebaseMarc Mueller2021-05-231-2/+2
| |
| * Keep user sorting for license filesMarc Mueller2021-05-232-11/+29
| |
| * Overwrite exlude from MANIFEST with license_files optionMarc Mueller2021-05-232-6/+7
| | | | | | | | | | * needed for 'License-File' metadata, as this is written before MANIFEST is read
| * Remove license_files_computed fieldMarc Mueller2021-05-232-5/+4
| |
| * Add License-File field to package metadataMarc Mueller2021-05-236-50/+77
| |
| * Changes after rebaseMarc Mueller2021-05-223-10/+5
| |
| * Small changes after reviewMarc Mueller2021-05-221-5/+1
| |
| * Changes after rebaseMarc Mueller2021-05-221-19/+8
| |
| * Fix testsMarc Mueller2021-05-222-2/+28
| |
| * Write long description in message payloadMarc Mueller2021-05-222-2/+27
| |
* | Use unique_everseen from more_itertools.Jason R. Coombs2021-05-224-66/+8
| |
* | Vendor more_itertoolsJason R. Coombs2021-05-229-1/+5036
|/
* Merge pull request #2678 from pypa/feature/static-commandsJason R. Coombs2021-05-212-10/+9
|\ | | | | Move distutils command names into package metadata and declare entry points using static config.
| * When discovering commands and distribution does not yet exist, return the ↵Jason R. Coombs2021-05-191-2/+6
| | | | | | | | empty list.
| * Move list of commands out of command package and into package metadata.Jason R. Coombs2021-05-192-10/+5
| |
* | Extract _set_metadata_defaults method and collapse the implementation to a ↵Jason R. Coombs2021-05-211-12/+12
| | | | | | | | much simpler form.
* | Fix misc. doc typosluz paz2021-05-147-9/+9
|/ | | 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-093-43/+35
|\ | | | | Always use latest metadata version for PKG-INFO
| * Always use latest mv version for PKG-INFOMarc Mueller2021-04-163-43/+35
| |
* | Merge pull request #2640 from cdce8p/licenseJason R. Coombs2021-05-093-2/+38
|\ \ | | | | | | Add escaping to license field
| * | Add escaping to license fieldMarc Mueller2021-04-163-2/+38
| |/
* | Merge pull request #2663 from dofuuz/vs2017-expressJason R. Coombs2021-05-041-0/+2
|\ \ | | | | | | Added Visual Studio Express 2017 support
| * | Find VC Express 2017 explicitly, not ARM tools.dofuuz2021-04-301-2/+1
| | |
| * | Add Visual Studio 2017 Express detectiondofuuz2021-04-291-0/+3
| | |
* | | Merge https://github.com/pypa/distutils into distutils-refreshJason R. Coombs2021-04-255-11/+22
|/ /