Skip to content

Commit

Permalink
Bump version: 61.0.0 → 61.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Mar 25, 2022
1 parent 4ddc98f commit 6310e32
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 61.0.0
current_version = 61.1.0
commit = True
tag = True

Expand Down
38 changes: 38 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
v61.1.0
-------


Deprecations
^^^^^^^^^^^^
* #3206: Changed ``setuptools.convert_path`` to an internal function that is not exposed
as part of setuptools API.
Future releases of ``setuptools`` are likely to remove this function.

Changes
^^^^^^^
* #3202: Changed behaviour of auto-discovery to not explicitly expand ``package_dir``
for flat-layouts and to not use relative paths starting with ``./``.
* #3203: Prevented ``pyproject.toml`` parsing from overwriting
``dist.include_package_data`` explicitly set in ``setup.py`` with default
value.
* #3208: Added a warning for non existing files listed with the ``file`` directive in
``setup.cfg`` and ``pyproject.toml``.
* #3208: Added a default value for dynamic ``classifiers`` in ``pyproject.toml`` when
files are missing and errors being ignored.
* #3211: Disabled auto-discovery when distribution class has a ``configuration``
attribute (e.g. when the ``setup.py`` script contains ``setup(...,
configuration=...)``). This is done to ensure extension-only packages created
with ``numpy.distutils.misc_util.Configuration`` are not broken by the safe
guard
behaviour to avoid accidental multiple top-level packages in a flat-layout.

.. note::
Users that don't set ``packages``, ``py_modules``, or ``configuration`` are
still likely to observe the auto-discovery behavior, which may halt the
build if the project contains multiple directories and/or multiple Python
files directly under the project root.

To disable auto-discovery please explicitly set either ``packages`` or
``py_modules``. Alternatively you can also configure :ref:`custom-discovery`.


v61.0.0
-------

Expand Down
2 changes: 0 additions & 2 deletions changelog.d/3202.change.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/3203.change.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/3206.deprecation.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/3208.change.1.rst

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/3208.change.2.rst

This file was deleted.

15 changes: 0 additions & 15 deletions changelog.d/3211.change.rst

This file was deleted.

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = setuptools
version = 61.0.0
version = 61.1.0
author = Python Packaging Authority
author_email = [email protected]
description = Easily download, build, install, upgrade, and uninstall Python packages
Expand Down

0 comments on commit 6310e32

Please sign in to comment.