From aa06f9c128a3b9ed2537a211852868c009192420 Mon Sep 17 00:00:00 2001 From: Marc Bresson <50196352+MarcBresson@users.noreply.github.com> Date: Tue, 15 Apr 2025 10:14:27 +0200 Subject: [PATCH 1/4] Bump max python version to 3.13 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a5638d3..78187d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,9 +33,10 @@ 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", ] -requires-python = ">=3.9,<3.13" +requires-python = ">=3.9,<3.14" dependencies = [ "matplotlib>=3.8.2,<3.10", "numpy>=1.26.3,<2.2", From 7d68413dfdd207b0cb416ab69ad6d5308d7c0644 Mon Sep 17 00:00:00 2001 From: Marc Bresson <50196352+MarcBresson@users.noreply.github.com> Date: Tue, 15 Apr 2025 10:17:28 +0200 Subject: [PATCH 2/4] Bump version to 0.10.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 78187d3..42f0e5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "frouros" -version = "0.9.0" +version = "0.10.0" description = "An open-source Python library for drift detection in machine learning systems" authors = [ {name = "Jaime Céspedes Sisniega", email = "cespedes@ifca.unican.es"} From 7e6e28bd6e12585aaa591faddc0d8d4888ce38fa Mon Sep 17 00:00:00 2001 From: Marc Bresson Date: Tue, 15 Apr 2025 10:27:04 +0200 Subject: [PATCH 3/4] Add python3.13 to tox --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c831900..1f8f202 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 4.16.0 envlist = - py3{9, 10, 11, 12} + py3{9, 10, 11, 12, 13} linters [base] @@ -16,6 +16,7 @@ python = 3.10: py310, linters 3.11: py311, linters 3.12: py312, linters + 3.13: py313, linters [testenv] # Force to upgrade pip/wheel/setuptools to the latest version From 7e76bc1da1e0a27be6d32ba7e8c8067c9d9071c4 Mon Sep 17 00:00:00 2001 From: Marc Bresson Date: Tue, 15 Apr 2025 10:29:29 +0200 Subject: [PATCH 4/4] Add python3.13 to GitHub CI --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c575ab4..f27adf6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: '3.10', '3.11', '3.12', + '3.13', ] steps: