From e4536c259f592bc172f9a89fda0b6387329770c9 Mon Sep 17 00:00:00 2001 From: Fredrick Eisele Date: Tue, 8 Apr 2025 16:22:31 -0500 Subject: [PATCH 1/3] provide a release tag 2.0.2 --- NEWS | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/NEWS b/NEWS index 3a695c2..dd79c88 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,21 @@ testresources release notes IN DEVELOPMENT -------------- +2.0.2 +~~~~~ + +CHANGES +~~~~~~~ + +* Skip testBasicSortTests in general (Kelledin) + +* Add a TestResourceManager.id() API for letting test results report about a resource identity (freeekanayaka) + +* Refactor failIf to assertFalse for Python 3.12 Compatibility (cjwatson) + +* Add support to Python 3.10 (jelmer) + + 2.0.1 ~~~~~ From c4fd163cb23a9572c00012ad02b52c15944b2c36 Mon Sep 17 00:00:00 2001 From: Fredrick Eisele Date: Mon, 21 Apr 2025 09:04:31 -0500 Subject: [PATCH 2/3] updated grammar --- NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS b/NEWS index dd79c88..2683d3c 100644 --- a/NEWS +++ b/NEWS @@ -17,7 +17,7 @@ CHANGES * Refactor failIf to assertFalse for Python 3.12 Compatibility (cjwatson) -* Add support to Python 3.10 (jelmer) +* Add support for Python >=3.10 (jelmer) 2.0.1 From 0df759729ec42b1e5e1e846c03c942d37a064aff Mon Sep 17 00:00:00 2001 From: Fredrick Eisele Date: Mon, 21 Apr 2025 09:14:04 -0500 Subject: [PATCH 3/3] add 3.12 and 3.13 to the supported python versions --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index d7d4d3e..8bb0fae 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v3