| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #2712 from darkvertex/data_files_glob_directive | Jason R. Coombs | 2021-08-26 | 2 | -1/+65 |
| |\ | | | | | Implement #1681 (globbing support for `[options.data_files]`) | ||||
| | * | config.py: Fix line-too-long warning in _parse_list_glob() | Alan Fregtman | 2021-07-26 | 1 | -1/+1 |
| | | | |||||
| | * | Satisfy some flake8 style checks for the previous commit. | Alan Fregtman | 2021-07-22 | 1 | -2/+2 |
| | | | |||||
| | * | globbing for [options.data_files]: Remove special treatment for filenames ↵ | Alan Fregtman | 2021-07-21 | 2 | -16/+4 |
| | | | | | | | | | with globby characters that exist literally. | ||||
| | * | Update globbing for [options.data_files] to be implicit, not requiring a ↵ | Alan Fregtman | 2021-07-21 | 2 | -11/+23 |
| | | | | | | | | | custom directive. | ||||
| | * | 👹 Feed the hobgoblins (delint). | Jason R. Coombs | 2021-07-04 | 1 | -1/+2 |
| | | | |||||
| | * | Implement "glob:" directive for declarative "data_files" option. | Alan Fregtman | 2021-06-30 | 2 | -1/+64 |
| | | | |||||
| * | | Fix broken links in easy_install.py | SeungMin Lee | 2021-07-20 | 1 | -3/+3 |
| | | | |||||
| * | | Merge pull request #2723 from zooba/ext_suffix | Jason R. Coombs | 2021-07-18 | 2 | -3/+45 |
| |\ \ | | | | | | | Fixes #2722 Adds an environment variable SETUPTOOLS_EXT_SUFFIX | ||||
| | * | | Fix extension in test | Steve Dower | 2021-07-12 | 1 | -1/+1 |
| | | | | |||||
| | * | | Override PyPy case in test | Steve Dower | 2021-07-12 | 1 | -1/+11 |
| | | | | |||||
| | * | | Fixes #2722: Adds an environment variable SETUPTOOLS_EXT_SUFFIX to override ↵ | Steve Dower | 2021-07-10 | 2 | -3/+35 |
| | | | | | | | | | | | | | the suffix inferred from the host Python runtime. | ||||
| * | | | Merge https://github.com/pypa/distutils into arm64 | Jason R. Coombs | 2021-07-14 | 1 | -0/+1 |
| |/ / | |||||
| * | | Merge https://github.com/pypa/distutils into feature/distutils-sync | Jason R. Coombs | 2021-07-04 | 11 | -95/+256 |
| | | | |||||
| * | | Merge pull request #2692 from rpurdie/main | Jason R. Coombs | 2021-07-04 | 1 | -1/+7 |
| |\ \ | | | | | | | setuptools/dist: Fix reproducibility issue by sorting globbing | ||||
| | * | | Add test | Jason R. Coombs | 2021-07-04 | 1 | -0/+6 |
| | | | | |||||
| | * | | Restore the iterator | Jason R. Coombs | 2021-07-04 | 1 | -2/+2 |
| | | | | |||||
| | * | | setuptools/dist: Fix reproducibility issue by sorting globbing | Richard Purdie | 2021-05-31 | 1 | -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. Coombs | 2021-07-04 | 2 | -276/+1 |
| |/ | |||||
| * | Merge branch 'main' into feature/more-itertools | Jason R. Coombs | 2021-05-22 | 7 | -59/+135 |
| |\ | |||||
| | * | Fix flaky test | Marc Mueller | 2021-05-23 | 1 | -5/+3 |
| | | | |||||
| | * | Replace for/if/add/extend with generator on patterns. Use unique_everseen to ↵ | Jason R. Coombs | 2021-05-23 | 1 | -11/+30 |
| | | | | | | | | | dedupe. | ||||
| | * | Revert removal of license_file | Marc Mueller | 2021-05-23 | 1 | -4/+2 |
| | | | |||||
| | * | Remove license_file | Marc Mueller | 2021-05-23 | 1 | -2/+4 |
| | | | |||||
| | * | Fix after rebase | Marc Mueller | 2021-05-23 | 1 | -2/+2 |
| | | | |||||
| | * | Keep user sorting for license files | Marc Mueller | 2021-05-23 | 2 | -11/+29 |
| | | | |||||
| | * | Overwrite exlude from MANIFEST with license_files option | Marc Mueller | 2021-05-23 | 2 | -6/+7 |
| | | | | | | | | | | | * needed for 'License-File' metadata, as this is written before MANIFEST is read | ||||
| | * | Remove license_files_computed field | Marc Mueller | 2021-05-23 | 2 | -5/+4 |
| | | | |||||
| | * | Add License-File field to package metadata | Marc Mueller | 2021-05-23 | 6 | -50/+77 |
| | | | |||||
| | * | Changes after rebase | Marc Mueller | 2021-05-22 | 3 | -10/+5 |
| | | | |||||
| | * | Small changes after review | Marc Mueller | 2021-05-22 | 1 | -5/+1 |
| | | | |||||
| | * | Changes after rebase | Marc Mueller | 2021-05-22 | 1 | -19/+8 |
| | | | |||||
| | * | Fix tests | Marc Mueller | 2021-05-22 | 2 | -2/+28 |
| | | | |||||
| | * | Write long description in message payload | Marc Mueller | 2021-05-22 | 2 | -2/+27 |
| | | | |||||
| * | | Use unique_everseen from more_itertools. | Jason R. Coombs | 2021-05-22 | 4 | -66/+8 |
| | | | |||||
| * | | Vendor more_itertools | Jason R. Coombs | 2021-05-22 | 9 | -1/+5036 |
| |/ | |||||
| * | Merge pull request #2678 from pypa/feature/static-commands | Jason R. Coombs | 2021-05-21 | 2 | -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. Coombs | 2021-05-19 | 1 | -2/+6 |
| | | | | | | | | | empty list. | ||||
| | * | Move list of commands out of command package and into package metadata. | Jason R. Coombs | 2021-05-19 | 2 | -10/+5 |
| | | | |||||
| * | | Extract _set_metadata_defaults method and collapse the implementation to a ↵ | Jason R. Coombs | 2021-05-21 | 1 | -12/+12 |
| | | | | | | | | | much simpler form. | ||||
| * | | Fix misc. doc typos | luz paz | 2021-05-14 | 7 | -9/+9 |
| |/ | | | Found via `codespell` | ||||
| * | Remove hard-coded indexes of metadata lines. Ref #2641. | Jason R. Coombs | 2021-05-09 | 1 | -3/+5 |
| | | |||||
| * | Merge pull request #2641 from cdce8p/mv-version | Jason R. Coombs | 2021-05-09 | 3 | -43/+35 |
| |\ | | | | | Always use latest metadata version for PKG-INFO | ||||
| | * | Always use latest mv version for PKG-INFO | Marc Mueller | 2021-04-16 | 3 | -43/+35 |
| | | | |||||
| * | | Merge pull request #2640 from cdce8p/license | Jason R. Coombs | 2021-05-09 | 3 | -2/+38 |
| |\ \ | | | | | | | Add escaping to license field | ||||
| | * | | Add escaping to license field | Marc Mueller | 2021-04-16 | 3 | -2/+38 |
| | |/ | |||||
| * | | Merge pull request #2663 from dofuuz/vs2017-express | Jason R. Coombs | 2021-05-04 | 1 | -0/+2 |
| |\ \ | | | | | | | Added Visual Studio Express 2017 support | ||||
| | * | | Find VC Express 2017 explicitly, not ARM tools. | dofuuz | 2021-04-30 | 1 | -2/+1 |
| | | | | |||||
| | * | | Add Visual Studio 2017 Express detection | dofuuz | 2021-04-29 | 1 | -0/+3 |
| | | | | |||||
| * | | | Merge https://github.com/pypa/distutils into distutils-refresh | Jason R. Coombs | 2021-04-25 | 5 | -11/+22 |
| |/ / | |||||
