From 9bec49391850c0a5850686d4b304c6a5e1f108c7 Mon Sep 17 00:00:00 2001 From: andrew Date: Tue, 26 Aug 2025 15:36:28 +0300 Subject: [PATCH 1/4] fix wrong version definition ("<3.14" instead of "<=3.13") --- pyproject.toml | 4 ++-- type_infer/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9b3232c..036af67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "type_infer" -version = "0.0.24" +version = "0.0.25" description = "Automated type inference for Machine Learning pipelines." authors = ["MindsDB Inc. "] license = "GPL-3.0" @@ -8,7 +8,7 @@ readme = "README.md" packages = [{include = "type_infer"}] [tool.poetry.dependencies] -python = ">=3.10,<=3.13" +python = ">=3.10,<3.14" python-dateutil = "^2.1" scipy = "^1" numpy = "^1.26" diff --git a/type_infer/__init__.py b/type_infer/__init__.py index 8cb42b9..dcc2916 100644 --- a/type_infer/__init__.py +++ b/type_infer/__init__.py @@ -3,7 +3,7 @@ from type_infer import api from type_infer import helpers -__version__ = '0.0.24' +__version__ = '0.0.25' __all__ = [ From ca09cf02b03765bb89da7242f2a59a92d5d2d610 Mon Sep 17 00:00:00 2001 From: andrew Date: Tue, 26 Aug 2025 15:38:15 +0300 Subject: [PATCH 2/4] added version for testing --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 32e3245..b0e030a 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.10","3.11", "3.12"] + python-version: ["3.10","3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} From 0d342c7b3bef56998dd1ac0ac8355cc9bab556c9 Mon Sep 17 00:00:00 2001 From: andrew Date: Tue, 26 Aug 2025 15:54:21 +0300 Subject: [PATCH 3/4] removed dep in 3.13 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 036af67..fd00a18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ dataclasses-json = "^0.6.3" colorlog = "^6.5.0" psutil = "^7.0" toml = "^0.10.2" +standard-imghdr = "^3.13" # rule based deps, part of core py3langid = ">=0.2.2,<0.3" From b9872899e9160c80c1ba9ca9262b9311c44fed73 Mon Sep 17 00:00:00 2001 From: andrew Date: Tue, 26 Aug 2025 16:01:34 +0300 Subject: [PATCH 4/4] removed dep in 3.13 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index fd00a18..6467cd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ colorlog = "^6.5.0" psutil = "^7.0" toml = "^0.10.2" standard-imghdr = "^3.13" +standard-sndhdr = "^3.13" # rule based deps, part of core py3langid = ">=0.2.2,<0.3"