aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Retain order when parsing values from configfeature/deterministic-provides-extras-2Jason R. Coombs2019-02-201-3/+4
|
* Prefer dict comprehensionJason R. Coombs2019-02-201-4/+4
|
* On Python 3.5 and earlier, sort extras_require to support repeatable builds ↵Jason R. Coombs2019-02-192-1/+7
| | | | based on metadata generated from extras on those older Pythons.
* Store 'provides_extras' as an ordered list to retain order.Jason R. Coombs2019-02-193-10/+30
|
* Expand tests to capture legacy behavior (sorted keys on older Pythons) and ↵Jason R. Coombs2019-02-191-5/+45
| | | | new behavior (honor author's order on Python 3.6)
* Add test capturing expectation that provides_extras are ordered.Jason R. Coombs2019-02-171-0/+13
|
* 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
|\| |
| * | Bump version: 40.7.0 → 40.7.1v40.7.1Jason R. Coombs2019-01-284-3/+8
| | |
| * | Merge pull request #1660 from pypa/bugfix/1653-downcast-config-stringsJason R. Coombs2019-01-284-1/+94
| |\ \ | | | | | | | | Prefer native strings on Python 2 when reading config files.
| | * | Add changelogJason R. Coombs2019-01-281-0/+1
| | | |
| | * | Prefer native strings on Python 2 when reading config files. Fixes #1653.Jason R. Coombs2019-01-281-1/+21
| | | |