From 8e3932c0d30ebc5a6318d96bff35fa64581c8fb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Thu, 18 Dec 2025 13:27:34 +0000 Subject: [PATCH 1/2] Update NEWS --- NEWS | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 0d86858b..ea77c412 100644 --- a/NEWS +++ b/NEWS @@ -9,7 +9,11 @@ Changes and improvements to testtools_, grouped by release. Improvements ------------ -* Add ``Nearly`` matcher for approximate numerical comparisons. (#222) +* Add ``Nearly`` matcher for approximate numerical comparisons. + (Jelmer Vernooij, #222) + +* Improve handling of sets in ``assertEquals``. + (Jelmer Vernooij, #108) Changes ------- @@ -17,6 +21,8 @@ Changes * Re-add accidentally removed methods on StreamToExtendedDecorator. (Jelmer Vernooij) + * Add typing. (Jelmer Vernooij, Stephen Finucane) + 2.8.0 ~~~~~ From b92d616ecd8de4401ed255178e325329b7b4848a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Thu, 18 Dec 2025 14:00:19 +0000 Subject: [PATCH 2/2] Avoid calling broken 'hatch run test' --- .github/workflows/publish.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4ffc8e18..3861d749 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,8 +32,6 @@ jobs: pip install hatch - name: Build package run: hatch build - - name: Test package - run: hatch run test - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/2')