Skip to content

Releases: scitex-ai/scitex-python

v2.30.8

Choose a tag to compare

@github-actions github-actions released this 07 Jul 01:31
177102e

Release v2.30.8. See CHANGELOG.md for details.

v2.30.7

Choose a tag to compare

@github-actions github-actions released this 06 Jul 21:10
b03d561

Release v2.30.7. See CHANGELOG.md for details.

v2.30.6

Choose a tag to compare

@github-actions github-actions released this 06 Jul 11:27
ac3d6ae

Release v2.30.6. See CHANGELOG.md for details.

v2.30.5

Choose a tag to compare

@github-actions github-actions released this 30 Jun 15:27
2f2cfa4

Changed

  • Umbrella == pin bumps to PyPI latest (PS-170 freshness sweep).
    scitex-writer 2.23.0→2.24.1 (post-compile fail-loud verification gate +
    clew verify gate + markers/colophon — the fix for the figure-less-PDF
    incident, so scitex[writer] consumers get the gate), scitex-dev
    0.20.1→0.21.0 (the unified compliance-linter trio: figure-lint v1 +
    raw-import research-ERROR + --new-only baseline gate), scitex-clew
    0.2.18→0.2.22.

v2.30.4

Choose a tag to compare

@github-actions github-actions released this 29 Jun 11:28
7cc8c78

Changed

  • Umbrella == pin bumps to PyPI latest (PS-170 freshness sweep).
    figrecipe 0.29.5→0.29.9 (NeuroVista grant figure fixes: caption justify,
    title-aware 10pt-bold-Arial panel labels, imshow aspect honoring,
    numpy-scalar recipe-save crash), scitex-writer 2.22.0→2.23.0,
    scitex-clew 0.2.17→0.2.18. Lets downstream research projects pin
    figrecipe==0.29.9 consistently alongside scitex==2.30.4.
  • _LazyModule error messages now name the canonical attribute home when
    one exists.
    When scitex.<short>.<attr> lookup fails because <short>
    is not installed (extras gate) or because <short> is installed but
    doesn't carry <attr> (the "phantom" case), the resulting error now
    routes through a curated redirect map (scitex._canonical_redirects).
    Example: scitex.gen.load_configs (which doesn't exist in scitex_gen)
    used to raise ImportError: scitex.gen requires additional dependencies. Install with: pip install scitex[gen] — telling the user to pip-install
    a heavy extras package (torch + CUDA + …) that doesn't even contain the
    function. Now it raises ImportError: scitex.gen.load_configs is not available here; the canonical location is scitex.io.load_configs (already installed by the umbrella core — no extra needed). Change your import to from scitex.io import load_configs``. Same upgrade for the
    AttributeError path when the module loaded fine but doesn't have the
    attribute. Seed redirect entries (gen → io / session / dict / str / etc /
    context / types) come from proj-paper-ripple-wm's PR#4a misdirected-
    callsite audit (2026-06-07) — the mngs.gen kitchen-sink namespace was
    split across multiple scitex peers, leaving hundreds of callsites
    pointing at `scitex.gen.` for `X` that now lives elsewhere.
  • pip install hints now use {sys.executable} -m pip. The previous
    bare pip install scitex[...] hint risked installing into a system-level
    Python when the user had an active virtualenv. Switched to
    {sys.executable} -m pip install 'scitex[<extras>]' so the install lands
    in the venv the user is currently running. Quotes the extras spec so
    shells that glob square brackets (zsh) don't choke. Applied to both
    _LazyModule.__getattr__'s ImportError fallback and the __dir__()
    missing-module warning.
  • scitex.security repointed to scitex_audit.github per ADR-0001
    (scitex-dev #139, Accepted 2026-06-07). scitex-security was absorbed
    into scitex-audit 0.2.0; the 5 public symbols (check_github_alerts,
    save_alerts_to_file, get_latest_alerts_file, format_alerts_report,
    GitHubSecurityError) now live in scitex_audit.github. The umbrella
    _LazyModule("security", external="scitex_audit.github") resolution
    • the external_alias_map "security" entry both move atomically. (#322)
  • click promoted to a hard core dependency (click>=8.0.0 in
    [project.dependencies]). The scitex-pkg console-script
    (scitex.cli.pkg:pkg) does an unguarded module-load import click, so
    PS-213 (console-script-deps-must-be-core, scitex-dev v0.17.10+) requires
    click in core — bare pip install scitex followed by scitex-pkg --help
    no longer raises ModuleNotFoundError. (#328)
  • Umbrella sub-package pins bumped to PyPI latest to satisfy PS-170
    (audit-umbrella-pins freshness gate) — unblocks the tests matrix that
    was red on main since 2026-06-09: scitex-dev 0.17.4 → 0.17.10,
    scitex-io 0.2.20 → 0.3.1, scitex-stats 0.2.23 → 0.2.24, scitex-db
    0.1.11 → 0.1.12, scitex-msword 0.2.0 → 0.3.2, scitex-dataset 0.3.10
    → 0.4.0, scitex-writer 2.17.3 → 2.17.5, scitex-agent-container
    0.21.9 → 0.21.11. 18 occurrences updated across [project.dependencies],
    module extras, [dev], and tooling extras. (#329)

Added

  • scitex._canonical_redirects module — private helper carrying the
    (short, attr) → canonical_short map and the two hint builders
    (missing_extras_hint, phantom_attr_hint). Extracted from
    scitex.re_export to keep the latter under the 512-line file cap. Pinned
    by 27 tests across tests/scitex/test_canonical_redirects.py and
    tests/scitex/test_lazymodule_redirects.py.
  • [security] extra now installs scitex-audit>=0.2.0 (was empty).
    Brings the umbrella extras into compliance with skill 03 §8 "every
    module MUST have an extra listing its standalone package". (#322)
  • scitex-audit pinned to ==0.2.0 in main deps, [audit],
    [dev], and [all]. (#322)

Removed

  • scitex-security==0.1.4 from main deps and [all] — absorbed
    into scitex-audit. The deprecated scitex-security 0.2.0 PyPI
    shim is NOT pulled by the umbrella; users who explicitly depend on
    the old package still get a DeprecationWarning redirecting them
    to scitex_audit.github. (#322)

Migration

  • from scitex_security import Xfrom scitex_audit.github import X,
    or just scitex.security.X (now resolves to the same SSOT).
  • scitex-security check OWNER/REPO --savescitex-audit github --repo OWNER/REPO --save. The legacy console-script hard-errors
    with a redirect per CLI-deprecation skill 11 §5.
  • ~/.scitex/security/ auto-symlinks to ~/.scitex/audit/github-alerts/
    on first import of scitex_audit (one-shot, marker-gated).

v2.30.3

Choose a tag to compare

@github-actions github-actions released this 28 Jun 08:45
18d9c58

Release v2.30.3. See CHANGELOG.md for details.

v2.30.2

Choose a tag to compare

@github-actions github-actions released this 20 Jun 14:59
cefd680

Release v2.30.2. See CHANGELOG.md for details.

v2.30.1

Choose a tag to compare

@github-actions github-actions released this 04 Jun 01:55
0e90374

Release v2.30.1. See CHANGELOG.md for details.

v2.30.0

Choose a tag to compare

@github-actions github-actions released this 30 May 21:27

Changed

  • Umbrella decomposition campaign: scitex.<x> modules are now thin branded aliases to their owning standalone packages instead of in-tree shim directories. Dropped the in-tree shim dirs for errors (→ scitex_logging), torch (→ scitex_linalg), stats (→ scitex_stats), diagram (→ figrecipe.diagram), clew (→ scitex_clew), tunnel (→ scitex_ssh), rng/verify. scitex.utils is now a thin re-export aggregator that distributes implementations to their owning packages. Env-loading delegates to scitex-config.
  • Linter: scitex.linter (and the more-consistent scitex.dev.linter) now resolve to the real engine scitex_dev.linter. Two stale registrations that kept routing to the archived scitex_linter distribution were removed (#306).

Removed

  • scitex-core dependency: dropped from pyproject.toml; all former scitex-core contents are standalonized. Enables public-archiving of scitex-core. (#299)
  • scitex.utils.verify_scitex_format: removed; superseded by the scitex-dev linter. (#300)
  • Dropped 10 redundant legacy MCP bridge files now covered by registry auto-mount.

Fixed

  • CI test matrix: greened the chronic-red umbrella matrix — switched to uv resolver, CPU-only torch, dropped coverage-triggered segfaults, and added a retry-on-incomplete-report guard for the non-deterministic C-extension shutdown segfault. (#303, #304, #305)
  • Bumped sibling pins for PS-170 freshness (scitex-dev 0.15.0, et al.).

v2.29.3

Choose a tag to compare

@github-actions github-actions released this 23 May 13:51
05c8ada

Fixed

  • Dependency pins: Restore >= minima for sibling scitex-* deps (was exact ==, which referenced unpublished versions like scitex-config==0.3.3 and broke pip install scitex with ResolutionImpossible). Fixes #282. The 2.29.0 and 2.29.1 PyPI releases shipped the broken == pins; 2.29.3 is the corrected release.