Skip to content

Commit 834f7a7

Browse files
committed
Update poetry sync command
1 parent 647d7ed commit 834f7a7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ We follow [Semantic Versions](https://semver.org/).
44

55
## Unreleased
66

7+
- Replace `poetry install --sync` to `poetry sync`
78
- Improve env config extraction for k8s
89

910
## 1.3.1

saritasa_invocations/poetry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
def install(context: invoke.Context) -> None:
88
"""Install dependencies via poetry."""
99
printing.print_success("Install dependencies with poetry")
10-
context.run("poetry install --sync")
10+
context.run("poetry sync")
1111

1212

1313
@invoke.task

0 commit comments

Comments
 (0)