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: diff --git a/pyproject.toml b/pyproject.toml index a5638d3..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"} @@ -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", 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