Skip to content

Commit e35cd78

Browse files
Merge pull request #63 from mindsdb/py3.12-support
Python 3.12 support
2 parents 43c728b + a3eae14 commit e35cd78

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
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.10
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.10'
5454
- name: Install dependencies
5555
run: |
5656
python -m pip install --upgrade pip

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# MindsDB - `dataprep_ml`
2+
23
Data utilities for Machine Learning pipelines.
34

45
<h1 align="center">

dataprep_ml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from dataprep_ml.base import StatisticalAnalysis, DataAnalysis
22

3-
__version__ = '25.2.3.0'
3+
__version__ = '0.0.24'
44
__name__ = "dataprep_ml"
55

66

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
[tool.poetry]
22
name = "dataprep-ml"
3-
version = "25.2.3.0"
3+
version = "0.0.24"
44
description = "Automated dataframe analysis for Machine Learning pipelines."
55
authors = ["MindsDB Inc. <[email protected]>"]
66
license = "GPL-3.0"
77
readme = "README.md"
88
packages = [{include = "dataprep_ml"}]
99

1010
[tool.poetry.dependencies]
11-
python = ">=3.8,<3.12"
11+
python = ">=3.10,<3.13"
1212
numpy = "^1"
1313
pandas = "^2"
1414
pydateinfer = "0.3.0"
1515
python-dateutil = ">=2.1"
1616
scipy = ">=1.7.3"
17-
type-infer = ">=0.0.21"
17+
type-infer = ">=0.0.22"
1818
dataclasses-json = "^0.6.3"
1919
colorlog = "^6.5.0"
2020
pydantic = "*"

0 commit comments

Comments
 (0)