From d72d97ba9403f149f5de5b0e85c3be526bc5f83a Mon Sep 17 00:00:00 2001 From: Yusuke Watanabe Date: Tue, 9 Jun 2026 22:43:08 +0900 Subject: [PATCH] chore(deps): bump scitex-dev pin to >=0.17.8 (stop CI flood) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The umbrella's tests workflow runs `scitex-dev ecosystem audit-umbrella-pins .` on every push + nightly cron. With `scitex-dev==0.17.4` pinned here, CI installs the 0.17.4 binary — which has the pre-0.17.8 strict-error PS-170 behaviour and exits 1 the moment any leaf publishes a newer wheel. Result: ~daily ecosystem CI-red email flood to the operator. scitex-dev 0.17.8 (published 2026-06-09 12:07 UTC) makes PS-170 warn-only by default (`scitex-dev ecosystem audit-umbrella-pins .` prints WARN: + exits 0; `--strict` restores the old fail-on-drift for the release-pipeline pre-publish gate). Bumping the pin to `>=0.17.8` lets CI pick up the new binary and the umbrella's `tests` matrix should turn green on the next run. 3 pin sites updated: [project].dependencies (line 71), [project].optional-dependencies.dev (line 934), and the [linter] optional-deps mount (line 1070). operator-SSoT repo — opening PR, NOT merging. --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5892e87a..6f84804a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,7 +68,7 @@ dependencies = [ # App SDK — unified file storage for local + cloud "scitex-app==0.2.8", # Delegated core modules (thin re-exports) - "scitex-dev==0.17.4", + "scitex-dev>=0.17.8", "scitex-io==0.2.20", "scitex-stats==0.2.23", "scitex-audio==0.2.13", @@ -931,7 +931,7 @@ dev = [ # `pip install scitex[cloud]` when scitex-hub is available. "scitex-container==0.2.1", "scitex-dataset==0.3.10", - "scitex-dev==0.17.4", + "scitex-dev>=0.17.8", "scitex-etc==0.2.0", "scitex-genai==0.1.0", "scitex-io==0.2.20", @@ -1067,7 +1067,7 @@ all = [ # ============================================ # Tool Configurations # ============================================ -linter = ["scitex-dev==0.17.4"] +linter = ["scitex-dev>=0.17.8"] orochi = ["scitex-orochi==0.16.4"] agent-container = ["scitex-agent-container==0.21.9"]