[bumpversion]
-current_version = 67.3.1
+current_version = 67.3.2
commit = True
tag = True
label: How to Reproduce
description: >-
Describe the steps to reproduce this bug.
+
+ Please try to create a [minimal reproducer](https://stackoverflow.com/help/minimal-reproducible-example),
+ and avoid things like "see the steps in the CI logs".
placeholder: |
- 1. Integrate setuptools via '...'
+ 1. Clone a simplified example: `git clone ...`
+ 2. Create a virtual environment for isolation with `...`
+ 2. Build the project with setuptools via '...'
2. Then run '...'
3. An error occurs.
validations:
+v67.3.2
+-------
+
+
+Misc
+^^^^
+* #3827: Improve deprecation warning message on ``pkg_resources.declare_namespace``
+ to display package name.
+
+
v67.3.1
-------
"""Declare that package 'packageName' is a namespace package"""
msg = (
+ f"Deprecated call to `pkg_resources.declare_namespace({packageName!r})`.\n"
"Implementing implicit namespace packages (as specified in PEP 420) "
"is preferred to `pkg_resources.declare_namespace`. "
"See https://setuptools.pypa.io/en/latest/references/"
[metadata]
name = setuptools
-version = 67.3.1
+version = 67.3.2
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages