| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix typo in docstringdi-patch-1 | Dustin Ingram | 2019-03-13 | 1 | -1/+1 |
| | | |||||
| * | Remove duplicate import io (#1713) | Frédéric Chapoton | 2019-03-06 | 1 | -1/+0 |
| | | | | Found by lgtm | ||||
| * | Remove unwritten sections of the documentation (#1705) | Ratin_Kumar | 2019-02-26 | 2 | -36/+1 |
| | | | | These sections of the documentation were never written, and refer to deprecated functionality anyway, so they can be removed. | ||||
| * | Merge pull request #1659 from benoit-pierre/fix_#1649 | Paul Ganssle | 2019-02-23 | 4 | -2/+49 |
| |\ | | | | | tests: improve `test_pip_upgrade_from_source` | ||||
| | * | Require network in CI builds | Paul Ganssle | 2019-02-23 | 3 | -1/+3 |
| | | | |||||
| | * | Automatically skip tests that require network | Paul Ganssle | 2019-02-23 | 1 | -10/+41 |
| | | | |||||
| | * | tests: improve `test_pip_upgrade_from_source` | Benoit Pierre | 2019-02-22 | 1 | -1/+15 |
| |/ | | | | | Parametrize the test to check different versions of pip (including master) are correctly supported. | ||||
| * | Merge pull request #1687 from pypa/feature/version-in-cfg | Paul Ganssle | 2019-02-22 | 3 | -9/+7 |
| |\ | | | | | Move version to declarative config | ||||
| | * | Move bumpversion config to .bumpversion.cfg as it seems not to be possible ↵feature/version-in-cfg | Jason R. Coombs | 2019-02-17 | 2 | -8/+6 |
| | | | | | | | | | to handle setup.cfg. Ref c4urself/bump2version#62. | ||||
| | * | Move version to setup.cfg | Jason R. Coombs | 2019-02-17 | 2 | -2/+2 |
| | | | |||||
| * | | Merge pull request #1683 from pradyunsg/patch-1 | Paul Ganssle | 2019-02-17 | 1 | -7/+7 |
| |\ \ | |/ |/| | Improve badges in README | ||||
| | * | Update badges in README | Pradyun Gedam | 2019-02-12 | 1 | -7/+7 |
| | | | | | | | | | | | | | * Consistent Styling * Add Logos of CI services * Shorten CI badge labels * Reorder for better wrapping | ||||
| * | | Add two tests capturing expectation for '' and None to ↵ | Jason R. Coombs | 2019-02-13 | 1 | -0/+13 |
| |/ | | | | _validate_resource_path. Ref #1686. | ||||
| * | Merge pull request #1675 from pganssle/optional_setup_py | Paul Ganssle | 2019-02-08 | 3 | -5/+35 |
| |\ | | | | | Add support for setup.cfg-only projects | ||||
| | * | Add changelog for PR #1675 | Paul Ganssle | 2019-02-07 | 1 | -0/+1 |
| | | | |||||
| | * | Add support for setup.cfg-only projects | Paul Ganssle | 2019-02-07 | 2 | -5/+34 |
| |/ | | | | | | Many projects can get away with an empty `setup.py` and use *only* the declarative `setup.cfg`. With the new PEP 517 backend, we can supply a default empty `setup.py` if one is not provided. | ||||
| * | Bump version: 40.7.3 → 40.8.0v40.8.0 | Paul Ganssle | 2019-02-05 | 2 | -2/+2 |
| | | |||||
| * | Merge pull request #1673 from pganssle/release_40.8.0 | mergify[bot] | 2019-02-05 | 4 | -5/+8 |
| |\ | | | | | Update changelog for version 40.8.0 | ||||
| | * | Update changelog for version 40.8.0 | Paul Ganssle | 2019-02-05 | 4 | -5/+8 |
| |/ | |||||
| * | Merge pull request #1652 from pganssle/build_meta_legacy | Paul Ganssle | 2019-02-05 | 3 | -214/+306 |
| |\ | | | | | Add build_meta_legacy backend | ||||
| | * | Rename build_meta:legacy to build_meta:__legacy__ | Paul Ganssle | 2019-02-05 | 3 | -4/+4 |
| | | | |||||
| | * | Move build_meta_legacy to build_meta:legacy | Paul Ganssle | 2019-02-03 | 4 | -57/+50 |
| | | | | | | | | | | | | | Rather than exposing a top-level module for the legacy backend, we will move the legacy backend into the `setuptools.build_meta` module and specify it using the module:object syntax. | ||||
| | * | Use absolute path in build_meta_legacy | Paul Ganssle | 2019-02-03 | 1 | -3/+4 |
| | | | | | | | | | | | Using the absolute path to the directory of the setup script better mimics the semantics of a direct invocation of python setup.py. | ||||
| | * | Set sys.path in try/finally block with comment | Paul Ganssle | 2019-02-03 | 1 | -8/+16 |
| | | | | | | | | | | | Per Nick Coghlan's suggestion on PR #1652, a try/finally block ensures that the path is restored even in the event of an error. | ||||
| | * | Add news fragment for PR #1652 | Paul Ganssle | 2019-02-03 | 1 | -0/+1 |
| | | | |||||
| | * | Add build_meta_legacy backend | Paul Ganssle | 2019-02-03 | 2 | -1/+44 |
| | | | | | | | | | | | | | | | This is part of the solution to GH #1642, it is a backwards-compatibility backend that can be used as a default PEP 517 backend for projects that use setuptools but haven't opted in to build_meta. | ||||
| | * | Add failing test suite for build_meta_legacy | Paul Ganssle | 2019-02-03 | 1 | -0/+13 |
| | | | | | | | | | | | | | This runs all build_meta tests, plus a test that it is possible to import from the directory containing `setup.py` when using the build_meta_legacy backend. | ||||
| | * | Add test for relative path imports in build_meta | Paul Ganssle | 2019-02-03 | 1 | -0/+20 |
| | | | | | | | | | | | | | Failing test adapted from PR #1643 Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> | ||||
| | * | Wrap build_meta tests in a reusable test class | Paul Ganssle | 2019-02-03 | 1 | -134/+134 |
| | | | |||||
| | * | Add __all__ to setuptools.build_meta | Paul Ganssle | 2019-02-03 | 1 | -0/+6 |
| | | | |||||
| | * | Wrap build_meta backend in a class | Paul Ganssle | 2019-02-03 | 1 | -90/+97 |
| |/ | | | | | | | In order to support both the `build_meta` and `build_meta_legacy` backends, the core functionality is wrapped in a class with methods to be overridden in build_meta_legacy. The class is an implementation detail and should remain private. | ||||
| * | Merge branch 'master' of https://github.com/pypa/setuptools | Jason R. Coombs | 2019-02-03 | 2 | -1/+1 |
| |\ | |||||
| | * | Merge pull request #1669 from pganssle/drop_build_system | Paul Ganssle | 2019-02-01 | 1 | -1/+0 |
| | |\ | | | | | | | Drop build-backend from pyproject.toml | ||||
| | | * | Drop build-backend from pyproject.toml | Paul Ganssle | 2019-02-01 | 1 | -1/+0 |
| | |/ | | | | | | | | | | | | | | | | | | | Because we do not include setuptools in our build requirements and there is no mechanism for a PEP 517 backend to bootstrap itself, setuptools cannot use setuptools.build_meta as its backend, and cannot use PEP 517 to build itself. Additionally, if you specify build-backend, it is impossible to disable PEP 517 builds with pip's --no-use-pep517 flag. | ||||
| | * | Merge pull request #1657 from benoit-pierre/better_1644_workaround | Paul Ganssle | 2019-02-01 | 1 | -0/+1 |
| | |\ | | | | | | | tweak #1644 workaround to fix `test_pip_upgrade_from_source` | ||||
| | | * | tweak #1644 workaround to fix `test_pip_upgrade_from_source` | Benoit Pierre | 2019-01-28 | 1 | -0/+1 |
| | | | | | | | | | | | | | Explicitly exclude `pyproject.toml` so it's never added (e.g. because `setuptools_scm` is used). | ||||
| * | | | Merge tag 'v40.7.3' | Jason R. Coombs | 2019-02-03 | 4 | -10/+20 |
| |\ \ \ | |/ / |/| | | | | | Bump version: 40.7.2 → 40.7.3 | ||||
| | * | | Bump version: 40.7.2 → 40.7.3v40.7.340.7-maintenance | Jason R. Coombs | 2019-02-03 | 4 | -3/+8 |
| | | | | |||||
| | * | | Merge pull request #1670 from pypa/bugfix/1668-adopt-splituser | Jason R. Coombs | 2019-02-03 | 2 | -8/+13 |
| | |\ \ | | | | | | | | | Revert to using a copy of splituser from Python 3.8. | ||||
| | | * | | Also restore port consideration when re-injecting credentials for found links. | Jason R. Coombs | 2019-02-03 | 1 | -1/+1 |
| | | | | | |||||
| | | * | | Add change description | Jason R. Coombs | 2019-02-03 | 1 | -0/+1 |
| | | | | | |||||
| | | * | | Revert to using a copy of splituser from Python 3.8. Using ↵ | Jason R. Coombs | 2019-02-03 | 1 | -7/+11 |
| | |/ / | | | | | | | | | | urllib.parse.urlparse is clumsy and causes problems as reported in #1663 and #1668. Alternative to #1499 and fixes #1668. | ||||
| * | | | Merge branch '40.7-maintenance' | Jason R. Coombs | 2019-01-31 | 4 | -3/+8 |
| |\ \ \ | |/ / | |||||
| | * | | Bump version: 40.7.1 → 40.7.2v40.7.2 | Jason R. Coombs | 2019-01-31 | 4 | -3/+8 |
| | | | | |||||
| | * | | Merge pull request #1666 from pypa/bugfix/1663-restore-port | Jason R. Coombs | 2019-01-31 | 2 | -1/+2 |
| | |\ \ | | | | | | | | | Bugfix/1663 restore port | ||||
| | | * | | Rename changelog to reflect new PRbugfix/1663-restore-port | Jason R. Coombs | 2019-01-31 | 1 | -0/+0 |
| | | | | | |||||
| * | | | | Merge pull request #1665 from pypa/bugfix/1663-restore-port | Jason R. Coombs | 2019-01-31 | 2 | -1/+2 |
| |\ \ \ \ | | |/ / | |/| | | Ensure port is included in package-index | ||||
| | * | | | Add changelog | Jason R. Coombs | 2019-01-31 | 1 | -0/+1 |
| | | | | | |||||
| | * | | | Ensure a specified port in package_index isn't lost in the parse/unparse of ↵ | Jason R. Coombs | 2019-01-31 | 1 | -1/+1 |
| | |/ / | | | | | | | | | | the URL when auth is present. Fixes #1663. | ||||
| * | | | Merge branch '40.7-maintenance' | Jason R. Coombs | 2019-01-28 | 6 | -3/+101 |
| |\ \ \ | |/ / | |||||
