-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove need to unwrap
Placeholder
(#225)
Use the `wrapt` package to implement a proxy placeholder used for `Commit`s in a transaction. Now we do not need to unwrap a placeholder after it has been filled.
- Loading branch information
Showing
5 changed files
with
52 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,9 @@ readme = "README.md" | |
license = { text = "Apache-2.0" } | ||
authors = [{ name = "appliedAI Initiative", email = "[email protected]" }] | ||
maintainers = [ | ||
{ name = "Nicholas Junge", email = "[email protected]" }, | ||
{ name = "Max Mynter", email = "[email protected]" }, | ||
{ name = "Adrian Rumpold", email = "[email protected]" }, | ||
{ name = "Nicholas Junge", email = "n.junge@appliedai-institute.de" }, | ||
{ name = "Max Mynter", email = "m.mynter@appliedai-institute.de" }, | ||
{ name = "Adrian Rumpold", email = "a.rumpold@appliedai-institute.de" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
|
@@ -32,7 +32,7 @@ classifiers = [ | |
"Typing :: Typed", | ||
] | ||
|
||
dependencies = ["fsspec>=2023.6.0", "lakefs-sdk>=1.0.0", "pyyaml>=6.0.1"] | ||
dependencies = ["fsspec>=2023.6.0", "lakefs-sdk>=1.0.0", "pyyaml>=6.0.1", "wrapt"] | ||
|
||
dynamic = ["version"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters