Skip to content

Commit f33c93e

Browse files
Merge pull request #49 from mindsdb/staging
New release
2 parents 7512255 + 193dbb2 commit f33c93e

File tree

4 files changed

+51
-51
lines changed

4 files changed

+51
-51
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: setup python
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: 3.9
21+
python-version: 3.11
2222

2323
- name: install all dependencies
2424
run: |

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
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.8","3.9","3.10","3.11"]
19+
python-version: ["3.10","3.11", "3.12"]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python ${{ matrix.python-version }}
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up Python
5151
uses: actions/setup-python@v2
5252
with:
53-
python-version: '3.8'
53+
python-version: '3.11'
5454
- name: Install dependencies
5555
run: |
5656
python -m pip install --upgrade pip

poetry.lock

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

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[tool.poetry]
22
name = "mindsdb-evaluator"
3-
version = "0.0.16"
3+
version = "0.0.17"
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.8,<3.12"
12-
type-infer = "0.0.21"
11+
python = ">=3.10,<3.13"
12+
type-infer = "0.0.22"
1313
numpy = "^1"
1414
pandas = "^2"
15-
scikit-learn = ">=1.0"
16-
dataprep-ml = "25.2.3.0"
15+
scikit-learn = "1.5.2"
16+
dataprep-ml = "0.0.24"
1717

1818
# dependencies for optional packages
1919
datasets = {version = "^2.20.0", optional = true}

0 commit comments

Comments
 (0)