Update changelog for version 40.8.0

This commit is contained in:
Paul Ganssle 2019-02-05 12:54:38 -05:00
parent 369b8e05d1
commit 794219ba05
No known key found for this signature in database
GPG Key ID: CD54FCE3D964BEFB
4 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,11 @@
v40.8.0
-------
* #1652: Added the ``build_meta:__legacy__`` backend, a "compatibility mode" PEP 517 backend that can be used as the default when ``build-backend`` is left unspecified in ``pyproject.toml``.
* #1635: Resource paths are passed to ``pkg_resources.resource_string`` and similar no longer accept paths that traverse parents, that begin with a leading ``/``. Violations of this expectation raise DeprecationWarnings and will become errors. Additionally, any paths that are absolute on Windows are strictly disallowed and will raise ValueErrors.
* #1536: ``setuptools`` will now automatically include licenses if ``setup.cfg`` contains a ``license_file`` attribute, unless this file is manually excluded inside ``MANIFEST.in``.
v40.7.3
-------

View File

@ -1,3 +0,0 @@
``setuptools`` will now automatically include licenses if ``setup.cfg``
contains a ``license_file`` attribute, unless this file is manually excluded
inside ``MANIFEST.in``.

View File

@ -1 +0,0 @@
Resource paths are passed to ``pkg_resources.resource_string`` and similar no longer accept paths that traverse parents, that begin with a leading ``/``. Violations of this expectation raise DeprecationWarnings and will become errors. Additionally, any paths that are absolute on Windows are strictly disallowed and will raise ValueErrors.

View File

@ -1 +0,0 @@
Added the ``build_meta:__legacy__`` backend, a "compatibility mode" PEP 517 backend that can be used as the default when ``build-backend`` is left unspecified in ``pyproject.toml``.