From cd506344dd446f7f90a2862dbb554805b35d4a9e Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Thu, 24 Oct 2024 23:10:33 -0400 Subject: [PATCH] Fix python package name (#53) --- Cargo.lock | 42 +++++++++++++++++++++--------------------- obstore/Cargo.toml | 4 ++-- obstore/pyproject.toml | 2 +- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f6943f2..d576450 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1162,27 +1162,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "object-store-py" -version = "0.2.0-beta.1" -dependencies = [ - "arrow", - "bytes", - "chrono", - "futures", - "http", - "indexmap", - "object_store", - "pyo3", - "pyo3-arrow", - "pyo3-async-runtimes", - "pyo3-file", - "pyo3-object_store", - "reqwest", - "tokio", - "url", -] - [[package]] name = "object_store" version = "0.11.1" @@ -1213,6 +1192,27 @@ dependencies = [ "walkdir", ] +[[package]] +name = "obstore" +version = "0.2.0-beta.2" +dependencies = [ + "arrow", + "bytes", + "chrono", + "futures", + "http", + "indexmap", + "object_store", + "pyo3", + "pyo3-arrow", + "pyo3-async-runtimes", + "pyo3-file", + "pyo3-object_store", + "reqwest", + "tokio", + "url", +] + [[package]] name = "once_cell" version = "1.20.2" diff --git a/obstore/Cargo.toml b/obstore/Cargo.toml index 5236298..cbf5cb2 100644 --- a/obstore/Cargo.toml +++ b/obstore/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "object-store-py" -version = "0.2.0-beta.1" +name = "obstore" +version = "0.2.0-beta.2" authors = { workspace = true } edition = { workspace = true } description = "A Python interface to the Rust object_store crate, providing a uniform API for interacting with object storage services and local files." diff --git a/obstore/pyproject.toml b/obstore/pyproject.toml index 3fc0f32..90e8bf7 100644 --- a/obstore/pyproject.toml +++ b/obstore/pyproject.toml @@ -3,7 +3,7 @@ requires = ["maturin>=1.4.0,<2.0"] build-backend = "maturin" [project] -name = "object-store-py" +name = "obstore" requires-python = ">=3.9" dependencies = [] classifiers = [