From b0440a5ad0ab040b829f45a911dead059d389959 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 22 Oct 2024 01:32:19 -0400 Subject: [PATCH 1/5] ci: add 3.13 --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2a04bdc..f9ed335 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,6 +26,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' runs-on: ${{ matrix.os }} name: ${{ matrix.os }}, Python ${{ matrix.python-version }} From b517a180a02c0cc9f0b4bf948e65cc59a18d5d40 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 22 Oct 2024 01:33:23 -0400 Subject: [PATCH 2/5] Update tox.ini --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9fa1583..6cfe4c0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{37,38,39,310,311,312}-pytest{6,7,8} + py{37,38,39,310,311,312,313}-pytest{6,7,8} pkg [gh-actions] @@ -11,6 +11,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313 [gh-actions:env] PYTEST_MAJOR_VERSION = From f55f59516c510abd720f66249a055e33b21b2bce Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 22 Oct 2024 01:35:01 -0400 Subject: [PATCH 3/5] Update pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 2acae3e..23eaff6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,6 +31,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python", "Topic :: System :: Systems Administration", From 054084b07c5f5f25d7ff153093b5ce626e4493f8 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 22 Oct 2024 01:43:58 -0400 Subject: [PATCH 4/5] Update test.yml --- .github/workflows/test.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9ed335..e6d2165 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,10 +44,10 @@ jobs: - name: Test packaging run: tox -e pkg - - name: Run tests with PyTest 6 + - name: Run tests with PyTest 8 run: tox env: - PYTEST_MAJOR_VERSION: 6 + PYTEST_MAJOR_VERSION: 8 PYTEST_PLUGINS: pytest_github_actions_annotate_failures - name: Run tests with PyTest 7 @@ -56,6 +56,12 @@ jobs: PYTEST_MAJOR_VERSION: 7 PYTEST_PLUGINS: pytest_github_actions_annotate_failures + - name: Run tests with PyTest 6 + run: tox + env: + PYTEST_MAJOR_VERSION: 6 + PYTEST_PLUGINS: pytest_github_actions_annotate_failures + post-test: name: All tests passed runs-on: ubuntu-latest From 31a3e2837bb6861f5b97dbf059016fcb242dfb27 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 17 Jan 2025 14:33:43 -0500 Subject: [PATCH 5/5] Update test.yml --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebfe979..b0fbd82 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,12 +51,14 @@ jobs: - name: Run tests with PyTest 7 run: tox + if: runner.os != 'Windows' env: PYTEST_MAJOR_VERSION: 7 PYTEST_PLUGINS: pytest_github_actions_annotate_failures - name: Run tests with PyTest 6 run: tox + if: runner.os != 'Windows' env: PYTEST_MAJOR_VERSION: 6 PYTEST_PLUGINS: pytest_github_actions_annotate_failures