Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Python] jamaibase: Bug fix: Table type is now correctly handled in Python > 3.10 #18

Merged
merged 5 commits into from
Aug 18, 2024
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- 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`.

## [Python] [v0.2.1] - 2024-08-18

### CHANGED / FIXED

Python SDK - jamaibase

- Bug fixes
- Table type is now correctly handled in Python > 3.10

## [v0.2] - 2024-07-23

### ADDED
Expand Down
1 change: 1 addition & 0 deletions clients/python/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exclude tests/**/*
3 changes: 3 additions & 0 deletions clients/python/src/jamaibase/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
from jamaibase.client import JamAI, JamAIAsync
from jamaibase.version import __version__

__all__ = ["JamAI", "JamAIAsync", "__version__"]
Loading
Loading