Skip to content

Commit 60ec4b5

Browse files
authored
Merge pull request #60 from mindsdb/fix-py-13
Fix python version
2 parents a9c764d + 6019ba0 commit 60ec4b5

File tree

4 files changed

+139
-20
lines changed

4 files changed

+139
-20
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest]
19-
python-version: ["3.10","3.11", "3.12"]
19+
python-version: ["3.10","3.11", "3.12", "3.13"]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python ${{ matrix.python-version }}

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)