mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-13 02:22:50 +00:00
fix(ci): remove --no-update flag removed in Poetry 2.x
The workflow fails with: The option "--no-update" does not exist --no-update was removed in Poetry 2.x. Plain `poetry lock` is the correct equivalent — it re-solves only what pyproject.toml requires without upgrading already-locked packages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
3d8c042ca5
commit
08b5907c9c
@@ -32,7 +32,7 @@ jobs:
|
||||
- name: Regenerate poetry.lock
|
||||
# --no-update: re-solve only what pyproject.toml requires without
|
||||
# upgrading packages that are already in the lock file.
|
||||
run: poetry lock --no-update
|
||||
run: poetry lock
|
||||
|
||||
- name: Check whether poetry.lock actually changed
|
||||
id: diff
|
||||
@@ -64,7 +64,7 @@ jobs:
|
||||
Run `poetry lock` to fix the lock file.
|
||||
```
|
||||
|
||||
Regenerated with `poetry lock --no-update` (existing package versions are preserved; only the lock file metadata is updated to match the new constraints).
|
||||
Regenerated with `poetry lock` (existing package versions are preserved; only the lock file metadata is updated to match the new constraints).
|
||||
BODY
|
||||
|
||||
gh pr create \
|
||||
|
||||
Reference in New Issue
Block a user