Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Merge https://github.com/jaraco/skeleton | Jason R. Coombs | 2021-01-16 | 8 | -21/+27 | |
|\ \ \ | ||||||
| * | | | Add support for namespace packages. Closes jaraco/skeleton#40. | Jason R. Coombs | 2021-01-15 | 1 | -1/+7 | |
| | | | | ||||||
| * | | | Use `extend-ignore` in flake8 config (#33) | Sviatoslav Sydorenko | 2021-01-08 | 1 | -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 Sydorenko | 2021-01-08 | 1 | -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 Sydorenko | 2021-01-08 | 1 | -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. Coombs | 2021-01-08 | 1 | -0/+4 | |
| | | | | ||||||
| * | | | Prefer pytest-enabler to jaraco.test | Jason R. Coombs | 2020-12-30 | 2 | -8/+5 | |
| | | | | ||||||
| * | | | Add note about automatic merging of PRs and the requirements and limitations. | Jason R. Coombs | 2020-12-30 | 1 | -0/+2 | |
| | | | | ||||||
| * | | | Rename 'Automated Tests' to simply 'tests' | Jason R. Coombs | 2020-12-30 | 2 | -4/+4 | |
| | | | | ||||||
| * | | | pre-commit autoupdate | Jason R. Coombs | 2020-12-29 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | Merge pull request #2516 from JEElsner/patch-1 | Jason R. Coombs | 2021-01-16 | 0 | -0/+0 | |
|\ \ \ \ | | | | | | | | | | | Fix code typo in entry_point.rst | |||||
| * | | | | Fix code typo in entry_point.rst | Jonathan E | 2020-12-29 | 1 | -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-ignore | Jason R. Coombs | 2021-01-16 | 1 | -5/+1 | |
|\ \ \ \ \ | | | | | | | | | | | | | Use `extend-ignore` in flake8 config | |||||
| * | | | | | Use `extend-ignore` in flake8 config | Sviatoslav Sydorenko | 2020-12-26 | 1 | -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-files | Jason R. Coombs | 2021-01-16 | 1 | -1/+2 | |
|\ \ \ \ \ | | | | | | | | | | | | | Use license_files instead of license_file in meta | |||||
| * | | | | | Use license_files instead of license_file in meta | Sviatoslav Sydorenko | 2020-12-26 | 1 | -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_module | Jason R. Coombs | 2021-01-16 | 3 | -0/+14 | |
|\ \ \ \ \ | | | | | | | | | | | | | Define create_module()/exec_module() in VendorImporter | |||||
| * | | | | | Define create_module()/exec_module() in VendorImporter | Miro Hrončok | 2021-01-04 | 3 | -0/+14 | |
| | |/ / / | |/| | | | | | | | | | | | | | Fixes https://github.com/pypa/setuptools/issues/2481 | |||||
* | | | | | Merge pull request #2518 from webknjaz/maintenance/flake8-mccabe-complexity | Jason R. Coombs | 2021-01-16 | 12 | -287/+346 | |
|\ \ \ \ \ | | | | | | | | | | | | | Enable McCabe complexity check in flake8 | |||||
| * | | | | | Enable McCabe complexity check in flake8 | Sviatoslav Sydorenko | 2020-12-31 | 1 | -0/+3 | |
| | | | | | | ||||||
| * | | | | | Apply noqa C901 comments to overly complex code | Sviatoslav Sydorenko | 2020-12-31 | 9 | -22/+34 | |
| | | | | | | ||||||
| * | | | | | Simplify `PackageIndex.process_index` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -32/+36 | |
| | | | | | | ||||||
| * | | | | | Simplify `msvc.SystemInfo.find_reg_vs_vers` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -22/+18 | |
| | | | | | | ||||||
| * | | | | | Simplify `setuptools.installer.fetch_build_egg` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -15/+8 | |
| | | | | | | ||||||
| * | | | | | Simplify `setuptools.glob._iglob` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -12/+5 | |
| | | | | | | ||||||
| * | | | | | Simplify `dist.Distribution._parse_config_files` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -24/+26 | |
| | | | | | | ||||||
| * | | | | | Simplify `egg_info.FileList.process_template_line` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -61/+66 | |
| | | | | | | ||||||
| * | | | | | Simplify `command.easy_install.expand_paths` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -7/+12 | |
| | | | | | | ||||||
| * | | | | | Simplify `command.easy_install.get_site_dirs` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -38/+43 | |
| | | | | | | ||||||
| * | | | | | Simplify `easy_install.update_pth` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -16/+20 | |
| | | | | | | ||||||
| * | | | | | Simplify `easy_install.install_eggs` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -6/+13 | |
| | | | | | | ||||||
| * | | | | | Simplify `setuptools.archive_util.unpack_tarfile` | Sviatoslav Sydorenko | 2020-12-31 | 1 | -32/+62 | |
| |/ / / / | ||||||
* | | | | | Merge branch 'main' of https://github.com/pypa/setuptools | Jason R. Coombs | 2021-01-16 | 3 | -38/+57 | |
|\ \ \ \ \ | ||||||
| * \ \ \ \ | Merge pull request #2533 from pypa/fix/2529 | Jason R. Coombs | 2021-01-16 | 3 | -38/+57 | |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Fix/2529 | |||||
| | * | | | | | Correctly handle normalized tagsfix/2529 | Dustin Ingram | 2021-01-15 | 2 | -4/+7 | |
| | | | | | | | ||||||
| | * | | | | | Add failing test | Dustin Ingram | 2021-01-15 | 1 | -6/+21 | |
| | | | | | | | ||||||
| | * | | | | | Move helper method out of class | Dustin Ingram | 2021-01-15 | 1 | -28/+29 | |
| | | | | | | | ||||||
* | | | | | | | Disable PIP_NO_INDEX for tests that override the index. Ref #2534.v51.2.0 | Jason R. Coombs | 2021-01-16 | 1 | -0/+2 | |
|/ / / / / / | ||||||
* | | | | | | Point changelog at 2534 for more info | Jason R. Coombs | 2021-01-16 | 1 | -1/+1 | |
| | | | | | | ||||||
* | | | | | | Bump version: 51.1.2 → 51.2.0 | Jason R. Coombs | 2021-01-16 | 6 | -6/+20 | |
| | | | | | | ||||||
* | | | | | | Point changelog at 2534 for more info | Jason R. Coombs | 2021-01-16 | 1 | -0/+0 | |
| | | | | | | ||||||
* | | | | | | Avoid hitting network during test_easy_install | Jason R. Coombs | 2021-01-16 | 2 | -0/+11 | |
|/ / / / / | ||||||
* | | | | | Merge pull request #2519 from henryiii/patch-2 | Jason R. Coombs | 2021-01-08 | 1 | -1/+1 | |
|\ \ \ \ \ | | | | | | | | | | | | | fix: suggest PyPA build instead of pep517.build | |||||
| * | | | | | fix: suggest PyPA build instead of pep517.build | Henry Schreiner | 2021-01-01 | 1 | -1/+1 | |
| |/ / / / | ||||||
* | | | | | Merge pull request #2523 from encukou/load_module | Jason R. Coombs | 2021-01-08 | 2 | -1/+4 | |
|\ \ \ \ \ | | | | | | | | | | | | | Avoid deprecated load_module() in pkg_resources namespace delaration | |||||
| * | | | | | Avoid deprecated load_module() in pkg_resources namespace delaration | Petr Viktorin | 2021-01-06 | 2 | -1/+4 | |
| |/ / / / | | | | | | | | | | | | | | | | Fixes: https://github.com/pypa/setuptools/issues/2493 | |||||
* | | | | | Merge pull request #2525 from jtr109/patch-1 | Jason R. Coombs | 2021-01-08 | 2 | -1/+2 | |
|\ \ \ \ \ | | | | | | | | | | | | | fix typo | |||||
| * | | | | | Update 2525.doc.rst | YuanPei Li | 2021-01-08 | 1 | -1/+1 | |
| | | | | | | ||||||
| * | | | | | Create 2525.doc.rst | YuanPei Li | 2021-01-08 | 1 | -0/+1 | |
| | | | | | | ||||||
| * | | | | | fix typo | YuanPei Li | 2021-01-08 | 1 | -1/+1 | |
| |/ / / / | | | | | | | | | | | Fix a difference between the name of function definition and calling. |