Skip to content

Commit

Permalink
fix: make version dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco authored and rtyler committed Jan 1, 2025
1 parent b682113 commit 336aeb2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ thiserror = { version = "2" }
url = { version = "2" }
urlencoding = "2.1.3"
uuid = { version = "1" }
path-tree = { version = "0.8.1"} # pin to 0.8.1 due to nightly features

# runtime / async
async-trait = { version = "0.1" }
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ of features outlined in the Delta [protocol][protocol] is also [tracked](#protoc
| Storage | Rust | Python | Comment |
| -------------------- | :-----: | :-----: | ---------------------------------------------------------------- |
| Local | ![done] | ![done] | |
| S3 - AWS | ![done] | ![done] | requires lock for concurrent writes |
| S3 - MinIO | ![done] | ![done] | No lock required when using `AmazonS3ConfigKey::ConditionalPut` with `storage_options = {"conditional_put":"etag"}` |
| S3 - R2 | ![done] | ![done] | No lock required when using `AmazonS3ConfigKey::ConditionalPut` with `storage_options = {"conditional_put":"etag"}` |
| S3 - AWS | ![done] | ![done] | |
| S3 - MinIO | ![done] | ![done] | |
| S3 - R2 | ![done] | ![done] | |
| Azure Blob | ![done] | ![done] | |
| Azure ADLS Gen2 | ![done] | ![done] | |
| Microsoft OneLake | ![done] | ![done] | |
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ build-backend = "maturin"

[project]
name = "deltalake"
version = "0.22.4"
description = "Native Delta Lake Python binding based on delta-rs with Pandas integration"
readme = "README.md"
license = { file = "licenses/deltalake_license.txt" }
Expand All @@ -18,6 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = ["pyarrow>=16"]
dynamic = ["version"]

[project.optional-dependencies]
pandas = ["pandas"]
Expand Down

0 comments on commit 336aeb2

Please sign in to comment.