From 766ed39b2fb7730a6e2a9945c118ace35f1073e8 Mon Sep 17 00:00:00 2001 From: Yusuke Watanabe Date: Sat, 30 May 2026 01:00:50 +0900 Subject: [PATCH] chore(re_export): direct dev to external (scitex_dev) src/scitex/dev/ has no tracked files (local empty/pycache ghost); dev already resolved to scitex_dev via the alias finder. Add external= + EXTERNAL_REEXPORTS for consistency with the other standalone re-exports (invariant now 49==49). --- src/scitex/__init__.py | 2 +- src/scitex/re_export.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scitex/__init__.py b/src/scitex/__init__.py index 3ce1a21c..d586758a 100755 --- a/src/scitex/__init__.py +++ b/src/scitex/__init__.py @@ -102,7 +102,7 @@ utils = _LazyModule("utils") etc = _LazyModule("etc", external="scitex_etc") context = _LazyModule("context", external="scitex_context") -dev = _LazyModule("dev") +dev = _LazyModule("dev", external="scitex_dev") gists = _LazyModule("gists", external="scitex_gists") errors = _LazyModule("errors") logging = _LazyModule("logging", external="scitex_logging") diff --git a/src/scitex/re_export.py b/src/scitex/re_export.py index 14ed07f4..84a36650 100755 --- a/src/scitex/re_export.py +++ b/src/scitex/re_export.py @@ -200,6 +200,7 @@ def __repr__(self): # imports like `from scitex.. import Y`) resolve to the external # package without requiring a `src/scitex//` directory in this repo. EXTERNAL_REEXPORTS = { + "dev": "scitex_dev", "bridge": "scitex_bridge", "capture": "scitex_capture", "config": "scitex_config",