From c7154f2f4287ab003a45d3a3710d04994ec8720d Mon Sep 17 00:00:00 2001 From: Wesley B <62723358+wesleyboar@users.noreply.github.com> Date: Tue, 23 Jun 2026 13:55:31 -0500 Subject: [PATCH 1/3] Revert "fix: must update reqs for Pip users" This reverts commit 484ef78c4e9230c2f57c37fc460dccde57cf88ce. --- requirements.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index b6fbf2e3..bcf1241e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -115,9 +115,9 @@ mkdocs-exclude-search==0.6.6 ; python_version >= "3.10" and python_version < "3. mkdocs-include-markdown-plugin==5.1.0 ; python_version >= "3.10" and python_version < "3.13" \ --hash=sha256:4a1b8d79a0e1b6fd357ca8013a6d1701c755ada4acb74ee97b0642d1afe6756e \ --hash=sha256:e9ca188ab1d86f5fc4a6b96ce8c85acf6e25f114897868041056ec7945f29f65 -mkdocs-tacc==1.0.4 ; python_version >= "3.10" and python_version < "3.13" \ - --hash=sha256:1029eafd35b9996e19fb560aae9d1174d4262e1e3a3c3c5ed3518f7d5cd0a16a \ - --hash=sha256:9945a00aeb67ca27609d7a15e63e6495fe4bc404af1ac8ac4731507a814470db +mkdocs-tacc==1.0.3 ; python_version >= "3.10" and python_version < "3.13" \ + --hash=sha256:35d293c93220bce94127d718400c8ec6218379fd0d27cffcc1cd15921db1b06c \ + --hash=sha256:fc02f5fb94dc3cf4e29ddf60009ee5a131a8b733480cebfbb028d51dde7c6727 mkdocs==1.4.3 ; python_version >= "3.10" and python_version < "3.13" \ --hash=sha256:5955093bbd4dd2e9403c5afaf57324ad8b04f16886512a3ee6ef828956481c57 \ --hash=sha256:6ee46d309bda331aac915cd24aab882c179a933bd9e77b80ce7d2eaaa3f689dd From 92c1cedab623e5c4753c6e83aa3358b5d90586ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 23 Jun 2026 18:56:49 +0000 Subject: [PATCH 2/3] chore: auto-update requirements.txt [bot] --- requirements.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index bcf1241e..b6fbf2e3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -115,9 +115,9 @@ mkdocs-exclude-search==0.6.6 ; python_version >= "3.10" and python_version < "3. mkdocs-include-markdown-plugin==5.1.0 ; python_version >= "3.10" and python_version < "3.13" \ --hash=sha256:4a1b8d79a0e1b6fd357ca8013a6d1701c755ada4acb74ee97b0642d1afe6756e \ --hash=sha256:e9ca188ab1d86f5fc4a6b96ce8c85acf6e25f114897868041056ec7945f29f65 -mkdocs-tacc==1.0.3 ; python_version >= "3.10" and python_version < "3.13" \ - --hash=sha256:35d293c93220bce94127d718400c8ec6218379fd0d27cffcc1cd15921db1b06c \ - --hash=sha256:fc02f5fb94dc3cf4e29ddf60009ee5a131a8b733480cebfbb028d51dde7c6727 +mkdocs-tacc==1.0.4 ; python_version >= "3.10" and python_version < "3.13" \ + --hash=sha256:1029eafd35b9996e19fb560aae9d1174d4262e1e3a3c3c5ed3518f7d5cd0a16a \ + --hash=sha256:9945a00aeb67ca27609d7a15e63e6495fe4bc404af1ac8ac4731507a814470db mkdocs==1.4.3 ; python_version >= "3.10" and python_version < "3.13" \ --hash=sha256:5955093bbd4dd2e9403c5afaf57324ad8b04f16886512a3ee6ef828956481c57 \ --hash=sha256:6ee46d309bda331aac915cd24aab882c179a933bd9e77b80ce7d2eaaa3f689dd From df32393a9996fdb89550b121a64832dfcc6b7bf7 Mon Sep 17 00:00:00 2001 From: Wesley B <62723358+wesleyboar@users.noreply.github.com> Date: Thu, 9 Jul 2026 14:26:31 -0500 Subject: [PATCH 3/3] fix: use poetry self add/remove for poetry-plugin-export poetry-plugin-export is a Poetry plugin and should be managed by Poetry itself, not pip, to avoid polluting the user's global Python environment and risking runtime Python mismatches. Co-Authored-By: Claude Sonnet 4.6 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4f8bfb39..5a8b9ec9 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,9 @@ DOCKER_COMPOSE_CMD := $(shell if command -v docker-compose > /dev/null; then ech # of poetry.lock until it is reliable or proven useless .PHONY: requirements.txt requirements.txt: poetry.lock - pip install --user poetry-plugin-export \ + poetry self add poetry-plugin-export \ && poetry export -f requirements.txt --output requirements.txt \ - && pip uninstall --yes poetry-plugin-export + && poetry self remove poetry-plugin-export .PHONY: build