summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge https://github.com/jaraco/skeletonJason R. Coombs2021-01-168-21/+27
|\ \ \
| * | | Add support for namespace packages. Closes jaraco/skeleton#40.Jason R. Coombs2021-01-151-1/+7
| | | |
| * | | Use `extend-ignore` in flake8 config (#33)Sviatoslav Sydorenko2021-01-081-5/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use `extend-ignore` in flake8 config This option allows to add extra ignored rules to the default list instead of replacing it. The default exclusions are: E121, E123, E126, E226, E24, E704, W503 and W504. Fixes #28. Refs: * https://github.com/pypa/setuptools/pull/2486/files#r541943356 * https://flake8.pycqa.org/en/latest/user/options.html#cmdoption-flake8-extend-ignore * https://flake8.pycqa.org/en/latest/user/options.html#cmdoption-flake8-ignore * Enable complexity limit. Fixes jaraco/skeleton#34. * Replace pep517.build with build (#37) * Replace pep517.build with build Resolves #30 * Prefer simple usage Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> * Use license_files instead of license_file in meta (#35) Singular `license_file` is deprecated since wheel v0.32.0. Refs: * https://wheel.readthedocs.io/en/stable/news.html * https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
| * | | Use license_files instead of license_file in meta (#35)Sviatoslav Sydorenko2021-01-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Singular `license_file` is deprecated since wheel v0.32.0. Refs: * https://wheel.readthedocs.io/en/stable/news.html * https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
| * | | Replace pep517.build with build (#37)Sviatoslav Sydorenko2021-01-081-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Replace pep517.build with build Resolves #30 * Prefer simple usage Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
| * | | Enable complexity limit. Fixes jaraco/skeleton#34.Jason R. Coombs2021-01-081-0/+4
| | | |
| * | | Prefer pytest-enabler to jaraco.testJason R. Coombs2020-12-302-8/+5
| | | |
| * | | Add note about automatic merging of PRs and the requirements and limitations.Jason R. Coombs2020-12-301-0/+2
| | | |
| * | | Rename 'Automated Tests' to simply 'tests'Jason R. Coombs2020-12-302-4/+4
| | | |
| * | | pre-commit autoupdateJason R. Coombs2020-12-291-2/+2
| | | |
* | | | Merge pull request #2516 from JEElsner/patch-1Jason R. Coombs2021-01-160-0/+0
|\ \ \ \ | | | | | | | | | | Fix code typo in entry_point.rst
| * | | | Fix code typo in entry_point.rstJonathan E2020-12-291-1/+1
| | | | | | | | | | | | | | | In __init__.py the function helloworld() was defined, but everywhere else, hello_world() is called. Rename this function so that it is consistent with the naming in the rest of the file.
* | | | | Merge pull request #2510 from webknjaz/maintenance/flake8-extend-ignoreJason R. Coombs2021-01-161-5/+1
|\ \ \ \ \ | | | | | | | | | | | | Use `extend-ignore` in flake8 config
| * | | | | Use `extend-ignore` in flake8 configSviatoslav Sydorenko2020-12-261-5/+1
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This option allows adding extra ignored rules to the default list instead of replacing it. The default exclusions are: E121, E123, E126, E226, E24, E704, W503 and W504. Refs: * https://github.com/pypa/setuptools/pull/2486/files#r541943356 * https://flake8.pycqa.org/en/latest/user/options.html#cmdoption-flake8-extend-ignore * https://flake8.pycqa.org/en/latest/user/options.html#cmdoption-flake8-ignore * #2501 * https://github.com//skeleton/issues/28
* | | | | Merge pull request #2511 from webknjaz/maintenance/setup.cfg-license-filesJason R. Coombs2021-01-161-1/+2
|\ \ \ \ \ | | | | | | | | | | | | Use license_files instead of license_file in meta
| * | | | | Use license_files instead of license_file in metaSviatoslav Sydorenko2020-12-261-1/+2
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Singular `license_file` is deprecated since wheel v0.32.0. Refs: * https://wheel.readthedocs.io/en/stable/news.html * https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
* | | | | Merge pull request #2517 from hroncok/load_moduleJason R. Coombs2021-01-163-0/+14
|\ \ \ \ \ | | | | | | | | | | | | Define create_module()/exec_module() in VendorImporter
| * | | | | Define create_module()/exec_module() in VendorImporterMiro Hrončok2021-01-043-0/+14
| | |/ / / | |/| | | | | | | | | | | | | Fixes https://github.com/pypa/setuptools/issues/2481
* | | | | Merge pull request #2518 from webknjaz/maintenance/flake8-mccabe-complexityJason R. Coombs2021-01-1612-287/+346
|\ \ \ \ \ | | | | | | | | | | | | Enable McCabe complexity check in flake8
| * | | | | Enable McCabe complexity check in flake8Sviatoslav Sydorenko2020-12-311-0/+3
| | | | | |
| * | | | | Apply noqa C901 comments to overly complex codeSviatoslav Sydorenko2020-12-319-22/+34
| | | | | |
| * | | | | Simplify `PackageIndex.process_index`Sviatoslav Sydorenko2020-12-311-32/+36
| | | | | |
| * | | | | Simplify `msvc.SystemInfo.find_reg_vs_vers`Sviatoslav Sydorenko2020-12-311-22/+18
| | | | | |
| * | | | | Simplify `setuptools.installer.fetch_build_egg`Sviatoslav Sydorenko2020-12-311-15/+8
| | | | | |
| * | | | | Simplify `setuptools.glob._iglob`Sviatoslav Sydorenko2020-12-311-12/+5
| | | | | |
| * | | | | Simplify `dist.Distribution._parse_config_files`Sviatoslav Sydorenko2020-12-311-24/+26
| | | | | |
| * | | | | 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
| | | | | |
| * | | | | Simplify `setuptools.archive_util.unpack_tarfile`Sviatoslav Sydorenko2020-12-311-32/+62
| |/ / / /
* | | | | Merge branch 'main' of https://github.com/pypa/setuptoolsJason R. Coombs2021-01-163-38/+57
|\ \ \ \ \
| * \ \ \ \ Merge pull request #2533 from pypa/fix/2529Jason R. Coombs2021-01-163-38/+57
| |\ \ \ \ \ | | | | | | | | | | | | | | Fix/2529
| | * | | | | Correctly handle normalized tagsfix/2529Dustin Ingram2021-01-152-4/+7
| | | | | | |
| | * | | | | Add failing testDustin Ingram2021-01-151-6/+21
| | | | | | |
| | * | | | | Move helper method out of classDustin Ingram2021-01-151-28/+29
| | | | | | |
* | | | | | | Disable PIP_NO_INDEX for tests that override the index. Ref #2534.v51.2.0Jason R. Coombs2021-01-161-0/+2
|/ / / / / /
* | | | | | Point changelog at 2534 for more infoJason R. Coombs2021-01-161-1/+1
| | | | | |
* | | | | | Bump version: 51.1.2 → 51.2.0Jason R. Coombs2021-01-166-6/+20
| | | | | |
* | | | | | Point changelog at 2534 for more infoJason R. Coombs2021-01-161-0/+0
| | | | | |
* | | | | | Avoid hitting network during test_easy_installJason R. Coombs2021-01-162-0/+11
|/ / / / /
* | | | | Merge pull request #2519 from henryiii/patch-2Jason R. Coombs2021-01-081-1/+1
|\ \ \ \ \ | | | | | | | | | | | | fix: suggest PyPA build instead of pep517.build
| * | | | | fix: suggest PyPA build instead of pep517.buildHenry Schreiner2021-01-011-1/+1
| |/ / / /
* | | | | Merge pull request #2523 from encukou/load_moduleJason R. Coombs2021-01-082-1/+4
|\ \ \ \ \ | | | | | | | | | | | | Avoid deprecated load_module() in pkg_resources namespace delaration
| * | | | | Avoid deprecated load_module() in pkg_resources namespace delarationPetr Viktorin2021-01-062-1/+4
| |/ / / / | | | | | | | | | | | | | | | Fixes: https://github.com/pypa/setuptools/issues/2493
* | | | | Merge pull request #2525 from jtr109/patch-1Jason R. Coombs2021-01-082-1/+2
|\ \ \ \ \ | | | | | | | | | | | | fix typo
| * | | | | Update 2525.doc.rstYuanPei Li2021-01-081-1/+1
| | | | | |
| * | | | | Create 2525.doc.rstYuanPei Li2021-01-081-0/+1
| | | | | |
| * | | | | fix typoYuanPei Li2021-01-081-1/+1
| |/ / / / | | | | | | | | | | Fix a difference between the name of function definition and calling.