Skip to content

Commit aa43f91

Browse files
Merge pull request #3 from S-FM/update/readme
allowed python3.10
2 parents 69c2cd7 + c24c37d commit aa43f91

4 files changed

Lines changed: 101 additions & 101 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# FAIM SDK
22

33
[![PyPI version](https://badge.fury.io/py/faim-sdk.svg)](https://badge.fury.io/py/faim-sdk)
4-
[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
4+
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
55
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
66

77
Production-ready Python SDK for FAIM (Foundation AI Models) - a high-performance time-series forecasting platform powered by foundation models.
@@ -467,7 +467,7 @@ See the `examples/` directory for complete Jupyter notebook examples:
467467

468468
## Requirements
469469

470-
- Python >= 3.11
470+
- Python >= 3.10
471471
- numpy >= 1.26.0
472472
- pyarrow >= 11.0.0
473473
- httpx >= 0.23.0

examples/model_comparison_simple.ipynb

Lines changed: 96 additions & 96 deletions
Large diffs are not rendered by default.

faim_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@
142142
"ConfigurationError",
143143
]
144144

145-
__version__ = "0.4.0"
145+
__version__ = "0.4.2"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "faim-sdk"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
description = "Python SDK for FAIM time-series forecasting with foundation AI models"
55
authors = ["FAIM <info@faim.it.com>"]
66
license = "Apache-2.0"
@@ -12,7 +12,7 @@ packages = [
1212
include = ["CHANGELOG.md", "faim_client/py.typed", "faim_sdk/py.typed", "faim_sdk/eval/py.typed"]
1313

1414
[tool.poetry.dependencies]
15-
python = "^3.11"
15+
python = "^3.10"
1616
numpy = ">=1.26.0,<2.0.0"
1717
pyarrow = ">=18.1.0"
1818
httpx = ">=0.23.0,<0.29.0"

0 commit comments

Comments
 (0)