Skip to content

Commit 2fa744e

Browse files
committed
fix python version
1 parent a9c764d commit 2fa744e

File tree

3 files changed

+138
-19
lines changed

3 files changed

+138
-19
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.19'
4+
__version__ = '0.0.20'
55
name = "mindsdb_evaluator"
66

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

poetry.lock

Lines changed: 135 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
22
name = "mindsdb-evaluator"
3-
version = "0.0.19"
3+
version = "0.0.20"
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"
11+
python = ">=3.10,<3.14"
1212
type-infer = "0.0.25"
1313
numpy = "^1"
1414
pandas = "^2"

0 commit comments

Comments
 (0)