Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[tool.poetry]
name = "type_infer"
version = "0.0.24"
version = "0.0.25"
description = "Automated type inference for Machine Learning pipelines."
authors = ["MindsDB Inc. <hello@mindsdb.com>"]
license = "GPL-3.0"
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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion type_infer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from type_infer import api
from type_infer import helpers

__version__ = '0.0.24'
__version__ = '0.0.25'


__all__ = [
Expand Down