Skip to content

Commit bc68371

Browse files
committed
Use local version of pyo3-bytes in obstore
1 parent 2234a63 commit bc68371

File tree

6 files changed

+4
-24
lines changed

6 files changed

+4
-24
lines changed

Cargo.lock

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

obstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ object_store = { workspace = true }
2828
pyo3 = { workspace = true, features = ["chrono"] }
2929
pyo3-arrow = "0.6"
3030
pyo3-async-runtimes = { workspace = true, features = ["tokio-runtime"] }
31-
pyo3-bytes = "0.1.2"
31+
pyo3-bytes = { path = "../pyo3-bytes" }
3232
pyo3-file = { workspace = true }
3333
pyo3-object_store = { path = "../pyo3-object_store" }
3434
tokio = { workspace = true, features = [

obstore/python/obstore/_buffer.pyi

Lines changed: 0 additions & 19 deletions
This file was deleted.

obstore/python/obstore/_bytes.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../pyo3-bytes/bytes.pyi

obstore/python/obstore/_get.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ from datetime import datetime
22
from typing import List, Sequence, Tuple, TypedDict
33

44
from ._attributes import Attributes
5-
from ._buffer import Bytes
5+
from ._bytes import Bytes
66
from ._list import ObjectMeta
77
from .store import ObjectStore
88

obstore/python/obstore/_obstore.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ from ._buffered import AsyncReadableFile as AsyncReadableFile
44
from ._buffered import ReadableFile as ReadableFile
55
from ._buffered import open as open
66
from ._buffered import open_async as open_async
7+
from ._bytes import Bytes as Bytes
78
from ._copy import copy as copy
89
from ._copy import copy_async as copy_async
910
from ._delete import delete as delete
1011
from ._delete import delete_async as delete_async
11-
from ._get import Bytes as Bytes
1212
from ._get import BytesStream as BytesStream
1313
from ._get import GetOptions as GetOptions
1414
from ._get import GetResult as GetResult

0 commit comments

Comments
 (0)