Skip to content

Commit 75a2302

Browse files
authored
Merge pull request #82 from mindsdb/staging
Release 0.0.25
2 parents 32562e9 + 5a202cf commit 75a2302

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
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.10","3.11", "3.12"]
19+
python-version: ["3.10","3.11", "3.12", "3.13"]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
22
name = "type_infer"
3-
version = "0.0.24"
3+
version = "0.0.25"
44
description = "Automated type inference for Machine Learning pipelines."
55
authors = ["MindsDB Inc. <hello@mindsdb.com>"]
66
license = "GPL-3.0"
77
readme = "README.md"
88
packages = [{include = "type_infer"}]
99

1010
[tool.poetry.dependencies]
11-
python = ">=3.10,<=3.13"
11+
python = ">=3.10,<3.14"
1212
python-dateutil = "^2.1"
1313
scipy = "^1"
1414
numpy = "^1.26"
@@ -17,6 +17,8 @@ dataclasses-json = "^0.6.3"
1717
colorlog = "^6.5.0"
1818
psutil = "^7.0"
1919
toml = "^0.10.2"
20+
standard-imghdr = "^3.13"
21+
standard-sndhdr = "^3.13"
2022

2123
# rule based deps, part of core
2224
py3langid = ">=0.2.2,<0.3"

type_infer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from type_infer import api
44
from type_infer import helpers
55

6-
__version__ = '0.0.24'
6+
__version__ = '0.0.25'
77

88

99
__all__ = [

0 commit comments

Comments
 (0)