From 7ccb3d261113b4f7faa9f400c6116d3dce0ab222 Mon Sep 17 00:00:00 2001 From: Stephen Rosen Date: Wed, 8 May 2024 14:35:31 -0500 Subject: [PATCH] Update changelog for pyproject.toml support --- docs/changelog.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 2d0bd045..6b33dbaa 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -16,6 +16,13 @@ Unreleased * Official support for ``python3.13`` betas. ``nose2`` now tests itself against Python 3.13. +* ``nose2`` now supports loading configuration data from the ``tool.nose2`` + table in ``pyproject.toml``. Thanks to :user:`qequ` for the PR! (:pr:`596`) + + On python 3.11+, ``tomllib`` is used to parse TOML data. On python 3.10 and + lower, ``tomli`` must be installed to enable TOML support. Simply + ``pip install tomli`` as necessary. + 0.14.2 (2024-05-07) -------------------