Skip to content

Commit 0f8607e

Browse files
committed
py3.13 support
1 parent 29c73fa commit 0f8607e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

mindsdb_evaluator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from mindsdb_evaluator.accuracy import * # noqa
22
from mindsdb_evaluator.calibration import * # noqa
33

4-
__version__ = '0.0.16'
4+
__version__ = '0.0.19'
55
name = "mindsdb_evaluator"
66

77
__all__ = ['name', '__version__']

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[tool.poetry]
22
name = "mindsdb-evaluator"
3-
version = "0.0.18"
3+
version = "0.0.19"
44
description = "Model evaluation for Machine Learning pipelines."
55
authors = ["MindsDB Inc. <hello@mindsdb.com>"]
66
license = "GPL-3.0"
77
readme = "README.md"
88
packages = [{include = "mindsdb_evaluator"}]
99

1010
[tool.poetry.dependencies]
11-
python = ">=3.10,<3.13"
12-
type-infer = "0.0.23"
11+
python = ">=3.10,<=3.13"
12+
type-infer = "0.0.25"
1313
numpy = "^1"
1414
pandas = "^2"
1515
scikit-learn = "1.5.2"
16-
dataprep-ml = "0.0.24"
16+
dataprep-ml = "0.0.25"
1717
# indirect dependency (from ragas). Set strict version to fix vulnerability, while it is not fixed in other dependencies.
1818
h11 = ">=0.16.0"
1919

0 commit comments

Comments
 (0)