This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new 7fe8fdc8 Bump Poetry to 1.8.4 (#1379)
7fe8fdc8 is described below
commit 7fe8fdc8329ff6e3dd7d26274aac1e6be7bd93c0
Author: Fokko Driesprong <[email protected]>
AuthorDate: Tue Nov 26 21:26:57 2024 +0100
Bump Poetry to 1.8.4 (#1379)
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index ee0b4055..86f3aa54 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ help: ## Display this help
install-poetry: ## Install poetry if the user has not done that yet.
@if ! command -v poetry &> /dev/null; then \
echo "Poetry could not be found. Installing..."; \
- pip install --user poetry==1.8.3; \
+ pip install --user poetry==1.8.4; \
else \
echo "Poetry is already installed."; \
fi