Skip to content
Open
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ GridDB Python Client

## Overview

GridDB Python Client has been renewed.
GridDB Python Client has been renewed in V5.8.

New GridDB Python Client is developed using GridDB Java API(Java Client), [JPype](https://github.com/jpype-project/jpype) and [Apache Arrow](https://arrow.apache.org/).

Expand All @@ -13,8 +13,8 @@ Building of the library and execution of the sample programs have been checked i
OS: Ubuntu 22.04 (x64) / RockyLinux 9.4 (x64) / Windows 11 (x64) / MacOS 12 (x86_64)
Python: 3.12
Java: 8
GridDB Java API: V5.8 CE
GridDB server: V5.8 CE, Ubuntu 22.04 (x64)
GridDB Java API: V5.9 CE
GridDB server: V5.9 CE, Ubuntu 22.04 (x64)

## QuickStart

Expand Down Expand Up @@ -52,7 +52,7 @@ $ cd sample
1. Download GridDB Java API on sample folder

```sh
$ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.8.0/gridstore-5.8.0.jar
$ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.9.0/gridstore-5.9.0.jar
```

2. Place GridDB JavaAPI Adapter for Apache Arrow on sample folder
Expand Down
8 changes: 4 additions & 4 deletions README_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ GridDB Pythonクライアント

## 概要

GridDB Pythonクライアントをリニューアルしました。
V5.8にてGridDB Pythonクライアントをリニューアルしました。

これまではGridDB C API(Cクライアント)経由でサーバへの操作を提供していましたが、
様々な機能強化のために、
Expand All @@ -18,8 +18,8 @@ GridDB Pythonクライアントをリニューアルしました。
OS: Ubuntu 22.04 (x64) / RockyLinux 9.4 (x64) / Windows 11 (x64) / MacOS 12 (x86_64)
Python: 3.12
Java: 8
GridDB Java API: V5.8 CE
GridDB Server: V5.8 CE, Ubuntu 22.04 (x64)
GridDB Java API: V5.9 CE
GridDB Server: V5.9 CE, Ubuntu 22.04 (x64)

## クイックスタート

Expand Down Expand Up @@ -55,7 +55,7 @@ $ cd sample
1. sampleフォルダ上にGridDB Java APIのダウンロード

```sh
$ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.8.0/gridstore-5.8.0.jar
$ curl -L -o gridstore.jar https://repo1.maven.org/maven2/com/github/griddb/gridstore/5.9.0/gridstore-5.9.0.jar
```

2. sampleフォルダ上にGridDB JavaAPI Adapter for Apache Arrowの配置
Expand Down
4 changes: 2 additions & 2 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.github.griddb</groupId>
<artifactId>gridstore-arrow</artifactId>
<version>5.8.0</version>
<version>5.9.0</version>
<packaging>jar</packaging>

<name>GridDB JavaAPI Adapter for Apache Arrow</name>
Expand All @@ -13,7 +13,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<arrow.version>17.0.0</arrow.version>
<slf4j.version>1.7.36</slf4j.version>
<griddb.version>5.8.0</griddb.version>
<griddb.version>5.9.0</griddb.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "griddb_python"
version = "5.8.0"
version = "5.9.0"
authors = [
{ name="Toshiba Digital Solutions Corporation", email="contact@griddb.org" },
]
Expand Down
2 changes: 1 addition & 1 deletion python/src/griddb_python/griddb_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
from com.toshiba.mwcloud.gs import TimeUnit as JTimeUnit
from com.toshiba.mwcloud.gs import FetchOption as JFetchOption
from com.toshiba.mwcloud.gs import Geometry as JGeometry
CLIENT_VERSION = "Python Client for GridDB V5.8"
CLIENT_VERSION = "Python Client for GridDB V5.9"

import warnings
warnings.filterwarnings(action="ignore", message=r"datetime.datetime.utcfromtimestamp")
Expand Down