From 9aef5b56bc29461b61f9da44b950309010051684 Mon Sep 17 00:00:00 2001 From: Kevin Anderson Date: Fri, 13 Dec 2024 16:51:22 -0500 Subject: [PATCH] Add python 3.13 to test matrix (#215) * add 3.13 to test matrix * whatsnew --- .github/workflows/lint-and-test.yml | 2 +- docs/whatsnew/v0.2.3.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index b52ef04d..0e5c66f1 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] requirements: [''] include: - requirements: "-r requirements-min.txt" diff --git a/docs/whatsnew/v0.2.3.rst b/docs/whatsnew/v0.2.3.rst index ab9225ea..461cda24 100644 --- a/docs/whatsnew/v0.2.3.rst +++ b/docs/whatsnew/v0.2.3.rst @@ -22,6 +22,7 @@ Documentation Testing ~~~~~~~ +* Add testing for python 3.13 (:pull:`215`). Contributors