Skip to content

Commit

Permalink
Use local version of pyo3-bytes in obstore (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored Jan 14, 2025
1 parent 2234a63 commit b797bec
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 24 deletions.
2 changes: 0 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion obstore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ object_store = { workspace = true }
pyo3 = { workspace = true, features = ["chrono"] }
pyo3-arrow = "0.6"
pyo3-async-runtimes = { workspace = true, features = ["tokio-runtime"] }
pyo3-bytes = "0.1.2"
pyo3-bytes = { path = "../pyo3-bytes" }
pyo3-file = { workspace = true }
pyo3-object_store = { path = "../pyo3-object_store" }
tokio = { workspace = true, features = [
Expand Down
19 changes: 0 additions & 19 deletions obstore/python/obstore/_buffer.pyi

This file was deleted.

1 change: 1 addition & 0 deletions obstore/python/obstore/_bytes.pyi
2 changes: 1 addition & 1 deletion obstore/python/obstore/_get.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ from datetime import datetime
from typing import List, Sequence, Tuple, TypedDict

from ._attributes import Attributes
from ._buffer import Bytes
from ._bytes import Bytes
from ._list import ObjectMeta
from .store import ObjectStore

Expand Down
2 changes: 1 addition & 1 deletion obstore/python/obstore/_obstore.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ from ._buffered import AsyncReadableFile as AsyncReadableFile
from ._buffered import ReadableFile as ReadableFile
from ._buffered import open as open
from ._buffered import open_async as open_async
from ._bytes import Bytes as Bytes
from ._copy import copy as copy
from ._copy import copy_async as copy_async
from ._delete import delete as delete
from ._delete import delete_async as delete_async
from ._get import Bytes as Bytes
from ._get import BytesStream as BytesStream
from ._get import GetOptions as GetOptions
from ._get import GetResult as GetResult
Expand Down

0 comments on commit b797bec

Please sign in to comment.