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 }} diff --git a/pyproject.toml b/pyproject.toml index 9b3232c..6467cd4 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" @@ -17,6 +17,8 @@ dataclasses-json = "^0.6.3" 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" 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__ = [