Skip to content

Commit 6364cee

Browse files
cleanup, move tests and examples
1 parent 2806176 commit 6364cee

File tree

7 files changed

+4
-5
lines changed

7 files changed

+4
-5
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

icedb/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ boto3==1.26.151
22
botocore==1.29.151
33
duckdb==0.8.1
44
pandas==2.0.2
5-
# psycopg2==2.9.6

icedb/icedb_test.py renamed to icedb_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from icedb import IceDBv3, CompressionCodec
2-
from log import S3Client, IceLogIO
1+
from icedb.icedb import IceDBv3, CompressionCodec
2+
from icedb.log import S3Client, IceLogIO
33
from datetime import datetime
44
import json
55
from time import time

icedb/log_test.py renamed to log_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from log import IceLogIO, Schema, FileMarker, LogTombstone, S3Client
1+
from icedb.log import IceLogIO, Schema, FileMarker, LogTombstone, S3Client
22
from time import time
33

44
s3c = S3Client(s3prefix="tenant", s3bucket="testbucket", s3region="us-east-1", s3endpoint="http://localhost:9000", s3accesskey="user", s3secretkey="password")

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
VERSION = '0.3.2'
3+
VERSION = '0.3.3'
44
DESCRIPTION = 'IceDB'
55
LONG_DESCRIPTION = 'Parquet merge engine'
66

0 commit comments

Comments
 (0)