summaryrefslogtreecommitdiff
path: root/setuptools/command
Commit message (Collapse)AuthorAgeFilesLines
...
| | * use distutils.util.get_platform to find the target platformNiyas Sait2021-08-261-1/+1
| | | | | | | | | | | | This will be required to support cross compilation
| | * add win/arm64 launchersNiyas Sait2021-08-261-1/+5
| | |
| * | sdist: Accept -u/--owner and -g/--group optionsJohn Marshall2021-09-221-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Controlling the file ownership recorded in tar archives is useful for those striving towards reproducible builds. These options are already understood by distutils.command.sdist.sdist, so just need to be accepted by setuptools.command.sdist.sdist to be propagated. Fixes #1893.
| * | Merge pull request #2785 from hugovk/replace-configparser-deprecationsJason R. Coombs2021-09-121-1/+1
| |\ \ | | | | | | | | configparser: replace deprecated readfp with read_file
| | * | configparser: replace deprecated readfp with read_fileHugo van Kemenade2021-09-121-1/+1
| | | |
| * | | Deprecate bdist_rpmHugo van Kemenade2021-09-091-0/+9
| |/ /
| * | Retain case in setup.cfg during sdist. Fixes #2773.Jason R. Coombs2021-09-081-0/+1
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2021-09-041-1/+0
| | |
| * | remove lib2to3 usageThomas Grainger2021-09-043-113/+49
| |/
| * Fix broken links in easy_install.pySeungMin Lee2021-07-201-3/+3
| |
| * Fixes #2722: Adds an environment variable SETUPTOOLS_EXT_SUFFIX to override ↵Steve Dower2021-07-101-3/+9
| | | | | | | | the suffix inferred from the host Python runtime.
| * Merge branch 'main' into feature/more-itertoolsJason R. Coombs2021-05-222-47/+8
| |\
| | * Overwrite exlude from MANIFEST with license_files optionMarc Mueller2021-05-231-1/+1
| | | | | | | | | | | | | | | * needed for 'License-File' metadata, as this is written before MANIFEST is read
| | * Remove license_files_computed fieldMarc Mueller2021-05-231-1/+1
| | |
| | * Add License-File field to package metadataMarc Mueller2021-05-232-47/+8
| | |
| * | Use unique_everseen from more_itertools.Jason R. Coombs2021-05-222-22/+4
| |/
| * Move list of commands out of command package and into package metadata.Jason R. Coombs2021-05-191-9/+0
| |
| * Small changesMarc Mueller2021-04-031-0/+3
| |
| * Change deprecation warningMarc Mueller2021-04-031-4/+3
| |
| * license_files - Add support for glob patterns + add default patternsMarc Mueller2021-04-031-21/+32
| |
| * Merge pull request #2566 from hroncok/remove_bdist_wininstJason R. Coombs2021-03-303-32/+3
| |\ | | | | | | Remove bdist_wininst, Filter out distutils deprecation
| | * Remove bdist_wininstMiro Hrončok2021-03-083-32/+3
| | | | | | | | | | | | Fixes https://github.com/pypa/setuptools/issues/2558
| * | remove duplicate wordJürgen Gmach2021-03-241-1/+1
| |/
| * Modify existing tests to be compatible with future underscore changeMelissa Li2021-03-021-1/+1
| |
| * Update fix and documentationMelissa Li2021-02-191-6/+3
| |
| * Fix sphinx upload_docsMelissa Li2021-02-191-2/+5
| |
| * Remove 'main' function from 'easy_install'.Jason R. Coombs2021-01-231-45/+1
| |
| * Remove eggsecutablefeature/remove-eggsecutableJason R. Coombs2021-01-202-57/+2
| |
| * Revert "Merge pull request #2533 from pypa/fix/2529"Jason R. Coombs2021-01-161-6/+4
| | | | | | | | | | This reverts commit ef457b2e4eb215ab9d730afbd61a10ed3b118d3c, reversing changes made to d2b1f7ebd6ebd57b4a50bc6660e93b31129bacb4.
| * Merge pull request #2518 from webknjaz/maintenance/flake8-mccabe-complexityJason R. Coombs2021-01-163-137/+168
| |\ | | | | | | Enable McCabe complexity check in flake8
| | * Apply noqa C901 comments to overly complex codeSviatoslav Sydorenko2020-12-313-9/+14
| | |
| | * Simplify `egg_info.FileList.process_template_line`Sviatoslav Sydorenko2020-12-311-61/+66
| | |
| | * Simplify `command.easy_install.expand_paths`Sviatoslav Sydorenko2020-12-311-7/+12
| | |
| | * Simplify `command.easy_install.get_site_dirs`Sviatoslav Sydorenko2020-12-311-38/+43
| | |
| | * Simplify `easy_install.update_pth`Sviatoslav Sydorenko2020-12-311-16/+20
| | |
| | * Simplify `easy_install.install_eggs`Sviatoslav Sydorenko2020-12-311-6/+13
| | |
| * | Correctly handle normalized tagsfix/2529Dustin Ingram2021-01-151-4/+6
| |/
* | egg_info: avoid non-PEP440 versions from tag_dateChih-Hsuan Yen2020-12-251-1/+1
|/
* Merge pull request #2413 from graingert/ignore-any-exception-loading2to3Jason R. Coombs2020-10-141-1/+1
|\ | | | | ignore any exception when loading 2to3
| * ignore any exception when loading 2to3Thomas Grainger2020-10-041-1/+1
| |
* | Extract method for maybe_tag.Jason R. Coombs2020-10-061-6/+11
|/
* Reduce size of setuptools' bdist_rpm._make_spec_fileThomas Hisch2020-09-041-13/+1
| | | | | | | | | There are some setuptools specific changes in the bdist_rpm module that are no longer needed, because the upstream/shipped version of distutils already contains them. The code that is removed in this commit from bdist_rpm is already part of the python-3.5 version of distutils. Related: #2377
* Remove Python 2 compatibilityJason R. Coombs2020-08-1613-152/+48
|
* Change load_module to exec_moduleAndrew Murray2020-08-102-7/+10
|
* Change exec_module to load_moduleAlex Henrie2020-07-112-2/+2
| | | | Fixes #2246
* Merge branch 'master' into 2020-06-11-raise-fromJason R. Coombs2020-07-034-47/+12
|\
| * Merge pull request #2166 from pypa/bugfix/2165-remove-site-pyJason R. Coombs2020-07-032-43/+2
| |\ | | | | | | Remove site.py hack
| | * Setuptools no longer installs a site.py file during easy_install or develop ↵Jason R. Coombs2020-05-292-43/+2
| | | | | | | | | | | | installs. Ref #2165.
| * | Use importlib instead of imp in __bootstrap__ functionsAlex Henrie2020-06-212-4/+7
| | |
| * | Restore __requires__ directive for compatibility. Fixes #2198.Jason R. Coombs2020-06-161-0/+3
| | |