summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2023-02-13 20:48:20 +0000
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2023-02-13 20:48:20 +0000
commitbd37bfc622a6f2220c2e4e30b18f2cd2904b7da6 (patch)
tree62d48848411c9072484ca021fe00392bc743d596
parent2bda269d0f2624dc77f6334976d16c07f967950e (diff)
downloadpython-setuptools-git-bd37bfc622a6f2220c2e4e30b18f2cd2904b7da6.tar.gz
Bump version: 67.2.0 → 67.3.0v67.3.0
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst27
-rw-r--r--changelog.d/3434.deprecation.rst3
-rw-r--r--changelog.d/3792.change.rst2
-rw-r--r--changelog.d/3822.misc.1.rst3
-rw-r--r--changelog.d/3822.misc.2.rst5
-rw-r--r--setup.cfg2
7 files changed, 29 insertions, 15 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 126aa159..2caed867 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 67.2.0
+current_version = 67.3.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index 428b8339..8c289f07 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,30 @@
+v67.3.0
+-------
+
+
+Deprecations
+^^^^^^^^^^^^
+* #3434: Added deprecation warning for ``pkg_resources.declare_namespace``.
+ Users that wish to implement namespace packages, are recommended to follow the
+ practice described in PEP 420 and omit the ``__init__.py`` file entirely.
+
+Changes
+^^^^^^^
+* #3792: Reduced usage of ``pkg_resources`` in ``setuptools`` via internal
+ restructuring and refactoring.
+
+Misc
+^^^^
+* #3822: Added debugging tips for "editable mode" and update related docs.
+ Instead of using a custom exception to display the help message to the user,
+ ``setuptools`` will now use a warning and re-raise the original exception.
+* #3822: Added clarification about ``editable_wheel`` and ``dist_info`` CLI commands:
+ they should not be called directly with ``python setup.py ...``.
+ Instead they are reserved for internal use of ``setuptools`` (effectively as "private" commands).
+ Users are recommended to rely on build backend APIs (:pep:`517` and :pep:`660`)
+ exposed by ``setuptools.build_meta``.
+
+
v67.2.0
-------
diff --git a/changelog.d/3434.deprecation.rst b/changelog.d/3434.deprecation.rst
deleted file mode 100644
index 2073d2b9..00000000
--- a/changelog.d/3434.deprecation.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Added deprecation warning for ``pkg_resources.declare_namespace``.
-Users that wish to implement namespace packages, are recommended to follow the
-practice described in PEP 420 and omit the ``__init__.py`` file entirely.
diff --git a/changelog.d/3792.change.rst b/changelog.d/3792.change.rst
deleted file mode 100644
index 8382120f..00000000
--- a/changelog.d/3792.change.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Reduced usage of ``pkg_resources`` in ``setuptools`` via internal
-restructuring and refactoring.
diff --git a/changelog.d/3822.misc.1.rst b/changelog.d/3822.misc.1.rst
deleted file mode 100644
index abcaa12f..00000000
--- a/changelog.d/3822.misc.1.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Added debugging tips for "editable mode" and update related docs.
-Instead of using a custom exception to display the help message to the user,
-``setuptools`` will now use a warning and re-raise the original exception.
diff --git a/changelog.d/3822.misc.2.rst b/changelog.d/3822.misc.2.rst
deleted file mode 100644
index 1df5bd4f..00000000
--- a/changelog.d/3822.misc.2.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-Added clarification about ``editable_wheel`` and ``dist_info`` CLI commands:
-they should not be called directly with ``python setup.py ...``.
-Instead they are reserved for internal use of ``setuptools`` (effectively as "private" commands).
-Users are recommended to rely on build backend APIs (:pep:`517` and :pep:`660`)
-exposed by ``setuptools.build_meta``.
diff --git a/setup.cfg b/setup.cfg
index 41ca2f73..129a9351 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = setuptools
-version = 67.2.0
+version = 67.3.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages