aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormergify[bot] <mergify[bot]@users.noreply.github.com>2019-02-05 18:10:24 +0000
committerGitHub <noreply@github.com>2019-02-05 18:10:24 +0000
commit6d302806525f92e1568cc06ad943ee17896c7fb4 (patch)
tree89e04de6e9904e26c4d217beed2bf1489410c82c
parent369b8e05d17d4b28bc5bde72a38ebb4180db68e6 (diff)
parent794219ba05b20b83bae0b50e9b5058f7c8bc9508 (diff)
downloadexternal_python_setuptools-6d302806525f92e1568cc06ad943ee17896c7fb4.tar.gz
external_python_setuptools-6d302806525f92e1568cc06ad943ee17896c7fb4.tar.bz2
external_python_setuptools-6d302806525f92e1568cc06ad943ee17896c7fb4.zip
Merge pull request #1673 from pganssle/release_40.8.0
Update changelog for version 40.8.0
-rw-r--r--CHANGES.rst8
-rw-r--r--changelog.d/1536.change.rst3
-rw-r--r--changelog.d/1635.change.rst1
-rw-r--r--changelog.d/1652.change.rst1
4 files changed, 8 insertions, 5 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 62896220..b043e449 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -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
-------
diff --git a/changelog.d/1536.change.rst b/changelog.d/1536.change.rst
deleted file mode 100644
index 8a69959c..00000000
--- a/changelog.d/1536.change.rst
+++ /dev/null
@@ -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``.
diff --git a/changelog.d/1635.change.rst b/changelog.d/1635.change.rst
deleted file mode 100644
index d23f3fe3..00000000
--- a/changelog.d/1635.change.rst
+++ /dev/null
@@ -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.
diff --git a/changelog.d/1652.change.rst b/changelog.d/1652.change.rst
deleted file mode 100644
index 387d212c..00000000
--- a/changelog.d/1652.change.rst
+++ /dev/null
@@ -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``.