Skip to content

Commit 9bec493

Browse files
committed
fix wrong version definition ("<3.14" instead of "<=3.13")
1 parent 1306f01 commit 9bec493

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 2 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"

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)