Skip to content

Commit 1f8ebda

Browse files
wesleyboargithub-actions[bot]claude
authored
fix: use poetry self add/remove for poetry-plugin-export (#284)
## What Did You Change? Use `poetry self add/remove` to manage `poetry-plugin-export` instead of `pip install --user`. ## Do You Want Support (syntax, design, etc)? N/A. <!-- After you open this PR, you can preview your changes. A comment will appear with a link to the server. --> ## Any Reference Material Worth Sharing? N/A. --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 99393fa commit 1f8ebda

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ DOCKER_COMPOSE_CMD := $(shell if command -v docker-compose > /dev/null; then ech
77
# of poetry.lock until it is reliable or proven useless
88
.PHONY: requirements.txt
99
requirements.txt: poetry.lock
10-
pip install --user poetry-plugin-export \
10+
poetry self add poetry-plugin-export \
1111
&& poetry export -f requirements.txt --output requirements.txt \
12-
&& pip uninstall --yes poetry-plugin-export
12+
&& poetry self remove poetry-plugin-export
1313

1414

1515
.PHONY: build

0 commit comments

Comments
 (0)