summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in docstringdi-patch-1Dustin Ingram2019-03-131-1/+1
|
* Remove duplicate import io (#1713)Frédéric Chapoton2019-03-061-1/+0
| | | Found by lgtm
* Remove unwritten sections of the documentation (#1705)Ratin_Kumar2019-02-262-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_#1649Paul Ganssle2019-02-234-2/+49
|\ | | | | tests: improve `test_pip_upgrade_from_source`
| * Require network in CI buildsPaul Ganssle2019-02-233-1/+3
| |
| * Automatically skip tests that require networkPaul Ganssle2019-02-231-10/+41
| |
| * tests: improve `test_pip_upgrade_from_source`Benoit Pierre2019-02-221-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-cfgPaul Ganssle2019-02-223-9/+7
|\ | | | | Move version to declarative config
| * Move bumpversion config to .bumpversion.cfg as it seems not to be possible ↵feature/version-in-cfgJason R. Coombs2019-02-172-8/+6
| | | | | | | | to handle setup.cfg. Ref c4urself/bump2version#62.
| * Move version to setup.cfgJason R. Coombs2019-02-172-2/+2
| |
* | Merge pull request #1683 from pradyunsg/patch-1Paul Ganssle2019-02-171-7/+7
|\ \ | |/ |/| Improve badges in README
| * Update badges in READMEPradyun Gedam2019-02-121-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. Coombs2019-02-131-0/+13
|/ | | | _validate_resource_path. Ref #1686.
* Merge pull request #1675 from pganssle/optional_setup_pyPaul Ganssle2019-02-083-5/+35
|\ | | | | Add support for setup.cfg-only projects
| * Add changelog for PR #1675Paul Ganssle2019-02-071-0/+1
| |
| * Add support for setup.cfg-only projectsPaul Ganssle2019-02-072-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.0Paul Ganssle2019-02-052-2/+2
|
* Merge pull request #1673 from pganssle/release_40.8.0mergify[bot]2019-02-054-5/+8
|\ | | | | Update changelog for version 40.8.0
| * Update changelog for version 40.8.0Paul Ganssle2019-02-054-5/+8
|/
* Merge pull request #1652 from pganssle/build_meta_legacyPaul Ganssle2019-02-053-214/+306
|\ | | | | Add build_meta_legacy backend
| * Rename build_meta:legacy to build_meta:__legacy__Paul Ganssle2019-02-053-4/+4
| |
| * Move build_meta_legacy to build_meta:legacyPaul Ganssle2019-02-034-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_legacyPaul Ganssle2019-02-031-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 commentPaul Ganssle2019-02-031-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 #1652Paul Ganssle2019-02-031-0/+1
| |
| * Add build_meta_legacy backendPaul Ganssle2019-02-032-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_legacyPaul Ganssle2019-02-031-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_metaPaul Ganssle2019-02-031-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 classPaul Ganssle2019-02-031-134/+134
| |
| * Add __all__ to setuptools.build_metaPaul Ganssle2019-02-031-0/+6
| |
| * Wrap build_meta backend in a classPaul Ganssle2019-02-031-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/setuptoolsJason R. Coombs2019-02-032-1/+1
|\
| * Merge pull request #1669 from pganssle/drop_build_systemPaul Ganssle2019-02-011-1/+0
| |\ | | | | | | Drop build-backend from pyproject.toml
| | * Drop build-backend from pyproject.tomlPaul Ganssle2019-02-011-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_workaroundPaul Ganssle2019-02-011-0/+1
| |\ | | | | | | tweak #1644 workaround to fix `test_pip_upgrade_from_source`
| | * tweak #1644 workaround to fix `test_pip_upgrade_from_source`Benoit Pierre2019-01-281-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. Coombs2019-02-034-10/+20
|\ \ \ | |/ / |/| | | | | Bump version: 40.7.2 → 40.7.3
| * | Bump version: 40.7.2 → 40.7.3v40.7.340.7-maintenanceJason R. Coombs2019-02-034-3/+8
| | |
| * | Merge pull request #1670 from pypa/bugfix/1668-adopt-splituserJason R. Coombs2019-02-032-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. Coombs2019-02-031-1/+1
| | | |
| | * | Add change descriptionJason R. Coombs2019-02-031-0/+1
| | | |
| | * | Revert to using a copy of splituser from Python 3.8. Using ↵Jason R. Coombs2019-02-031-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. Coombs2019-01-314-3/+8
|\ \ \ | |/ /
| * | Bump version: 40.7.1 → 40.7.2v40.7.2Jason R. Coombs2019-01-314-3/+8
| | |
| * | Merge pull request #1666 from pypa/bugfix/1663-restore-portJason R. Coombs2019-01-312-1/+2
| |\ \ | | | | | | | | Bugfix/1663 restore port
| | * | Rename changelog to reflect new PRbugfix/1663-restore-portJason R. Coombs2019-01-311-0/+0
| | | |
* | | | Merge pull request #1665 from pypa/bugfix/1663-restore-portJason R. Coombs2019-01-312-1/+2
|\ \ \ \ | | |/ / | |/| | Ensure port is included in package-index
| * | | Add changelogJason R. Coombs2019-01-311-0/+1
| | | |
| * | | Ensure a specified port in package_index isn't lost in the parse/unparse of ↵Jason R. Coombs2019-01-311-1/+1
| |/ / | | | | | | | | | the URL when auth is present. Fixes #1663.
* | | Merge branch '40.7-maintenance'Jason R. Coombs2019-01-286-3/+101
|\ \ \ | |/ /