Skip to content

Commit b48a220

Browse files
authored
[Python] jamaibase: Bug fix: Table type is now correctly handled in Python > 3.10 (#18)
1 parent 73dd981 commit b48a220

File tree

7 files changed

+537
-405
lines changed

7 files changed

+537
-405
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1414

1515
- The version number mentioned here refers to the cloud version. For each release, all SDKs will have the same major and minor version, but their patch version may differ. For example, latest Python SDK might be `v0.2.0` whereas TS SDK might be `v0.2.1`, but both will be compatible with release `v0.2`.
1616

17+
## [Python] [v0.2.1] - 2024-08-18
18+
19+
### CHANGED / FIXED
20+
21+
Python SDK - jamaibase
22+
23+
- Bug fixes
24+
- Table type is now correctly handled in Python > 3.10
25+
1726
## [v0.2] - 2024-07-23
1827

1928
### ADDED

clients/python/MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exclude tests/**/*
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
from jamaibase.client import JamAI, JamAIAsync
2+
from jamaibase.version import __version__
3+
4+
__all__ = ["JamAI", "JamAIAsync", "__version__"]

0 commit comments

Comments
 (0)