Commit 601f82e5 authored by Benoit Pierre's avatar Benoit Pierre

fix PEP 518 configuration

Add `build-system.requires` key to `pyproject.toml`:
- this is necessary with pip 10.0.1, as otherwise the defaults will be
  to require both `setuptools` and `wheel` (and we only need the later)
- a `pyproject.toml` with no `build-system.requires` key will be invalid
  and rejected by a future version of pip
  (see https://github.com/pypa/pip/issues/5416#issuecomment-399638608)
parent 5c816483
Fix PEP 518 configuration: set build requirements in ``pyproject.toml`` to ``["wheel"]``.
[build-system]
requires = ["wheel"]
[tool.towncrier]
package = "setuptools"
package_dir = "setuptools"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment