summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version: 40.9.0 → 41.0.0v41.0.0Jason R. Coombs2019-04-054-3/+8
|
* Merge pull request #1735 from pypa/bugfix/1702-utf8-configJason R. Coombs2019-04-055-42/+48
|\ | | | | When reading config files, require them to be encoded with UTF-8.
| * Remove detect_encoding, no longer used.Jason R. Coombs2019-04-051-13/+0
| |
| * Correct cyrillic to match preferred pronunciation.Jason R. Coombs2019-04-051-2/+2
| |
| * Add compatibility for Python 2Jason R. Coombs2019-04-051-3/+3
| |
| * Add test for setopt to demonstrate that edit_config retains non-ASCII ↵Jason R. Coombs2019-04-051-0/+36
| | | | | | | | characters.
| * Add changelog entry. Ref #1702.Jason R. Coombs2019-04-051-0/+1
| |
| * When reading config files, require them to be encoded with UTF-8. Fixes #1702.Jason R. Coombs2019-04-052-29/+11
|/
* Feed the hobgoblins (delint).Jason R. Coombs2019-04-052-7/+9
|
* Bump version: 40.8.0 → 40.9.0v40.9.0Paul Ganssle2019-04-032-2/+3
|
* Merge pull request #1733 from pganssle/new_setuptools_versionmergify[bot]2019-04-035-5/+10
|\ | | | | Update changelog for version 40.9.0
| * Update changelog for version 40.9.0Paul Ganssle2019-04-035-5/+10
|/
* Merge pull request #1706 from cjerdonek/issue-1664-include-metadata-locationPaul Ganssle2019-04-033-5/+128
|\ | | | | Include path in error message when version is missing (Fixes #1664)
| * Include file path when Version: missingChris Jerdonek2019-04-033-3/+120
| | | | | | | | | | | | | | | | | | | | Related to pip's github issue pypa/pip#6194. This has come up in pip's issue tracker (github) multiple times: - pypa/pip#6177 - pypa/pip#6283 - pypa/pip#6194
| * Add Distribution._get_version() for DRYChris Jerdonek2019-04-031-2/+8
|/
* Merge pull request #1731 from pganssle/fix_travis_pypymergify[bot]2019-04-021-1/+2
|\ | | | | Update pypy in travis
| * Pin pypy2.7 version in TravisPaul Ganssle2019-04-021-1/+2
|/ | | | | | | There is some issue with pypy2.7-5.8.0 in Travis. This probably does not solve the *root* issue, but updating the pypy version does seem to fix the build, so in the interest of unblocking the project, we will merge this change.
* Add section on reporting security vulnerabilities through Tidelift.Jason R. Coombs2019-03-191-0/+4
|
* Merge pull request #1720 from pganssle/fix_setup_metaPaul Ganssle2019-03-163-1/+57
|\ | | | | Support requirement parsing in setuptools.build_meta
| * Use pkg_resources.parse_requirements in build_metaPaul Ganssle2019-03-161-41/+2
| | | | | | | | | | Since pkg_resources is imported elsewhere anyway, we don't get much value out of porting the requirement parser locally.
| * Add changelog for PR #1720Paul Ganssle2019-03-161-0/+1
| |
| * Extend requirement parsing tests to sdistsPaul Ganssle2019-03-161-3/+12
| |
| * Add requirement parsing in setuptools.build_metaPaul Ganssle2019-03-162-14/+53
| | | | | | | | | | | | | | | | | | This fixes GH #1682 by porting the pkg_resources requirement parsing logic into setuptools.build_meta, so that all valid requirement specifiers passed to setup_requires will be added to the get_requires_for_build_* function outputs. Fixes GH #1682
| * Add failing test for setup_requiresPaul Ganssle2019-03-161-0/+46
| | | | | | | | | | | | | | | | | | Per GH #1682, with setuptools.build_meta we are not properly handling the situation where setup_requires is actually a newline-delimited string rather than a list, which is supported by setup.py interface. This adds several failing (and some passing) tests for how setup_requires is handled by setuptools.build_meta.
* | Fix typo in docstring (#1718)Dustin Ingram2019-03-161-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.