diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 03024e7..b25ce13 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -18,7 +18,7 @@ jobs: - name: setup python uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.10 - name: install all dependencies run: | diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 142b393..5a554e1 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ["3.8","3.9","3.10","3.11"] + python-version: ["3.10","3.11", "3.12"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -50,7 +50,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/README.md b/README.md index 64391c8..4f3855b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # MindsDB - `dataprep_ml` + Data utilities for Machine Learning pipelines.

diff --git a/dataprep_ml/__init__.py b/dataprep_ml/__init__.py index 8a3fcbe..ecb6f3a 100644 --- a/dataprep_ml/__init__.py +++ b/dataprep_ml/__init__.py @@ -1,6 +1,6 @@ from dataprep_ml.base import StatisticalAnalysis, DataAnalysis -__version__ = '25.2.3.0' +__version__ = '0.0.24' __name__ = "dataprep_ml" diff --git a/pyproject.toml b/pyproject.toml index 342f0cf..0557f7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dataprep-ml" -version = "25.2.3.0" +version = "0.0.24" description = "Automated dataframe analysis for Machine Learning pipelines." authors = ["MindsDB Inc. "] license = "GPL-3.0" @@ -8,13 +8,13 @@ readme = "README.md" packages = [{include = "dataprep_ml"}] [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = ">=3.10,<3.13" numpy = "^1" pandas = "^2" pydateinfer = "0.3.0" python-dateutil = ">=2.1" scipy = ">=1.7.3" -type-infer = ">=0.0.21" +type-infer = ">=0.0.22" dataclasses-json = "^0.6.3" colorlog = "^6.5.0" pydantic = "*"