aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2018-11-12 12:32:24 -0500
committerPaul Ganssle <paul@ganssle.io>2018-11-12 13:11:40 -0500
commitdaa5968f43163651011604a793615d850aafb2eb (patch)
treee8356d47297b58bea3d12df9b93db34e06ec2c0d
parent6f50e58948b50edf7d02d4effa44a47fefc9f6b9 (diff)
downloadexternal_python_setuptools-daa5968f43163651011604a793615d850aafb2eb.tar.gz
external_python_setuptools-daa5968f43163651011604a793615d850aafb2eb.tar.bz2
external_python_setuptools-daa5968f43163651011604a793615d850aafb2eb.zip
Prepare changelog entry for version 40.6.0
-rw-r--r--CHANGES.rst20
-rw-r--r--changelog.d/1395.doc.rst1
-rw-r--r--changelog.d/1456.doc.rst1
-rw-r--r--changelog.d/1519.change.rst1
-rw-r--r--changelog.d/1531.misc.rst1
-rw-r--r--changelog.d/1533.misc.rst1
-rw-r--r--changelog.d/1537.doc.rst1
-rw-r--r--changelog.d/1539.doc.rst1
-rw-r--r--changelog.d/1541.deprecation.rst1
-rw-r--r--changelog.d/1545.feature.rst1
-rw-r--r--changelog.d/1552.doc.rst1
-rw-r--r--changelog.d/1553.doc.rst1
-rw-r--r--changelog.d/1554.change.rst1
-rw-r--r--changelog.d/1560.doc.rst1
-rw-r--r--changelog.d/1564.doc.rst1
-rw-r--r--changelog.d/1572.misc.rst1
-rw-r--r--changelog.d/1576.change.rst1
17 files changed, 20 insertions, 16 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index ca07119d..39297036 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,23 @@
+v40.6.0
+-------
+
+* #1541: Officially deprecated the ``requires`` parameter in ``setup()``.
+* #1519: In ``pkg_resources.normalize_path``, additional path normalization is now performed to ensure path values to a directory is always the same, preventing false positives when checking scripts have a consistent prefix to set up on Windows.
+* #1545: Changed the warning class of all deprecation warnings; deprecation warning classes are no longer derived from ``DeprecationWarning`` and are thus visible by default.
+* #1554: ``build_meta.build_sdist`` now includes ``setup.py`` in source distributions by default.
+* #1576: Started monkey-patching ``get_metadata_version`` and ``read_pkg_file`` onto ``distutils.DistributionMetadata`` to retain the correct version on the ``PKG-INFO`` file in the (deprecated) ``upload`` command.
+* #1533: Restricted the ``recursive-include setuptools/_vendor`` to contain only .py and .txt files.
+* #1395: Changed Pyrex references to Cython in the documentation.
+* #1456: Documented that the ``rpmbuild`` packages is required for the ``bdist_rpm`` command.
+* #1537: Documented how to use ``setup.cfg`` for ``src/ layouts``
+* #1539: Added minimum version column in ``setup.cfg`` metadata table.
+* #1552: Fixed a minor typo in the python 2/3 compatibility documentation.
+* #1553: Updated installation instructions to point to ``pip install`` instead of ``ez_setup.py``.
+* #1560: Updated ``setuptools`` distribution documentation to remove some outdated information.
+* #1564: Documented ``setup.cfg`` minimum version for version and project_urls.
+* #1572: Added the ``concurrent.futures`` backport ``futures`` to the Python 2.7 test suite requirements.
+
+
v40.5.0
-------
diff --git a/changelog.d/1395.doc.rst b/changelog.d/1395.doc.rst
deleted file mode 100644
index 346041ce..00000000
--- a/changelog.d/1395.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Document building Cython projects instead of Pyrex
diff --git a/changelog.d/1456.doc.rst b/changelog.d/1456.doc.rst
deleted file mode 100644
index b01d5338..00000000
--- a/changelog.d/1456.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Documented that the ``rpmbuild`` packages is required for the ``bdist_rpm`` command.
diff --git a/changelog.d/1519.change.rst b/changelog.d/1519.change.rst
deleted file mode 100644
index a0e8a6f1..00000000
--- a/changelog.d/1519.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-In ``pkg_resources.normalize_path``, additional path normalization is now performed to ensure path values to a directory is always the same, preventing false positives when checking scripts have a consistent prefix to set up on Windows.
diff --git a/changelog.d/1531.misc.rst b/changelog.d/1531.misc.rst
deleted file mode 100644
index cc51940d..00000000
--- a/changelog.d/1531.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Converted Python version-specific tests to use ``skipif`` instead of ``xfail``, and removed Python 2.6-specific code from the tests.
diff --git a/changelog.d/1533.misc.rst b/changelog.d/1533.misc.rst
deleted file mode 100644
index 934df494..00000000
--- a/changelog.d/1533.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Restrict the `recursive-include setuptools/_vendor` to contain only .py and .txt files
diff --git a/changelog.d/1537.doc.rst b/changelog.d/1537.doc.rst
deleted file mode 100644
index 02d15eae..00000000
--- a/changelog.d/1537.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Document how to use setup.cfg for src/ layouts. \ No newline at end of file
diff --git a/changelog.d/1539.doc.rst b/changelog.d/1539.doc.rst
deleted file mode 100644
index 220f6519..00000000
--- a/changelog.d/1539.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Added minumum version column in ``setup.cfg`` metadata table.
diff --git a/changelog.d/1541.deprecation.rst b/changelog.d/1541.deprecation.rst
deleted file mode 100644
index cc07aaa7..00000000
--- a/changelog.d/1541.deprecation.rst
+++ /dev/null
@@ -1 +0,0 @@
-Officially deprecated the ``requires`` parameter in ``setup()``.
diff --git a/changelog.d/1545.feature.rst b/changelog.d/1545.feature.rst
deleted file mode 100644
index 70591d56..00000000
--- a/changelog.d/1545.feature.rst
+++ /dev/null
@@ -1 +0,0 @@
-Changed the warning class of all deprecation warnings; deprecation warning classes are no longer derived from ``DeprecationWarning`` and are thus visible by default.
diff --git a/changelog.d/1552.doc.rst b/changelog.d/1552.doc.rst
deleted file mode 100644
index 43e0e62d..00000000
--- a/changelog.d/1552.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fixed a minor typo in the python 2/3 compatibility documentation.
diff --git a/changelog.d/1553.doc.rst b/changelog.d/1553.doc.rst
deleted file mode 100644
index 2f68b95e..00000000
--- a/changelog.d/1553.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Update installation instructions to point to ``pip install`` instead of ``ez_setup.py``. \ No newline at end of file
diff --git a/changelog.d/1554.change.rst b/changelog.d/1554.change.rst
deleted file mode 100644
index d55c042c..00000000
--- a/changelog.d/1554.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-``build_meta.build_sdist`` now includes ``setup.py`` in source distributions by default
diff --git a/changelog.d/1560.doc.rst b/changelog.d/1560.doc.rst
deleted file mode 100644
index 8288aa4e..00000000
--- a/changelog.d/1560.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-update ``setuptools`` distribution documentation to mimic packaging.python.org tutorial. \ No newline at end of file
diff --git a/changelog.d/1564.doc.rst b/changelog.d/1564.doc.rst
deleted file mode 100644
index 37494a26..00000000
--- a/changelog.d/1564.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Document setup.cfg minimum version for version and project_urls
diff --git a/changelog.d/1572.misc.rst b/changelog.d/1572.misc.rst
deleted file mode 100644
index aa3ab7ae..00000000
--- a/changelog.d/1572.misc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Added the ``concurrent.futures`` backport ``futures`` to the Python 2.7 test suite requirements.
diff --git a/changelog.d/1576.change.rst b/changelog.d/1576.change.rst
deleted file mode 100644
index 85c578ed..00000000
--- a/changelog.d/1576.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Started monkey-patching ``get_metadata_version`` and ``read_pkg_file`` onto ``distutils.DistributionMetadata`` to retain the correct version on the ``PKG-INFO`` file in the (deprecated) ``upload`` command.