Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ dependencies = [
"scitex-etc==0.2.1", # media shipped here; scitex.media re-exports scitex_etc.media
"scitex-genai==0.1.1",
"scitex-gists==0.1.8",
"scitex-audit==0.2.0",
"scitex-security==0.2.0",
"scitex-logging==0.1.7",
"scitex-dict==0.1.8",
"scitex-browser==0.1.15",
Expand Down Expand Up @@ -191,7 +191,7 @@ audio = [

# Audit Module - Code and security auditing
# Use: pip install scitex[audit]
audit = ["scitex-audit==0.2.0"]
audit = ["scitex-security==0.2.0"]

# Benchmark Module - Performance monitoring
# Use: pip install scitex[benchmark]
Expand Down Expand Up @@ -671,7 +671,7 @@ schema = []
# "security" mapping). The standalone `scitex-security` 0.2.0 is a
# deprecated thin shim and is NOT pulled here.
# Use: pip install scitex[security]
security = ["scitex-audit==0.2.0"]
security = ["scitex-security==0.2.0"]

# Session Module - Session management
# Use: pip install scitex[session]
Expand Down Expand Up @@ -946,7 +946,7 @@ dev = [
"scipy",
"scitex-agent-container==0.21.11",
"scitex-audio==0.3.0",
"scitex-audit==0.2.0",
"scitex-security==0.2.0",
"scitex-browser==0.1.15",
"scitex-clew==0.17.0",
# NOTE: scitex-hub (optional peer powering cloud/module/project; formerly
Expand Down
2 changes: 1 addition & 1 deletion src/scitex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
schema = _LazyModule("schema") # Data schema utilities
canvas = _LazyModule("canvas") # Canvas utilities for figure composition
security = _LazyModule(
"security", external="scitex_audit.github", fallback="scitex_security"
"security", external="scitex_security.github", fallback="scitex_security"
) # ADR-0001 (#139) routed scitex.security → scitex_audit.github; ADR-0002
# (#142) then made scitex_security the unified home (scitex-audit = deprecated
# shim). Prefer scitex_audit.github when present, fall back to scitex_security.
Expand Down
2 changes: 1 addition & 1 deletion src/scitex/_skills/scitex/03_python-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ scitex.notification → scitex_notification
scitex.audio → scitex_audio
scitex.dataset → scitex_dataset
scitex.app → scitex_app
scitex.audit → scitex_audit
scitex.audit → scitex_security
scitex.compat → scitex_compat
scitex.repro → scitex_repro
scitex.dict → scitex_dict
Expand Down
2 changes: 1 addition & 1 deletion src/scitex/cli/audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def audit(ctx, path, as_json, save, checks):
return

from scitex.audit import audit as do_audit
from scitex_audit._format import format_json, format_text
from scitex_security._format import format_json, format_text

results = do_audit(
path=path,
Expand Down
4 changes: 2 additions & 2 deletions src/scitex/re_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def __repr__(self):
"etc": "scitex_etc",
"media": "scitex_etc.media", # in-tree dir removed; shipped in scitex-etc (>=0.2.0)
"gists": "scitex_gists",
"audit": "scitex_audit",
"audit": "scitex_security",
"compat": "scitex_compat",
"repro": "scitex_repro",
"app": "scitex_app",
Expand Down Expand Up @@ -320,7 +320,7 @@ def __repr__(self):
# The 5 public symbols (check_github_alerts, save_alerts_to_file,
# get_latest_alerts_file, format_alerts_report, GitHubSecurityError) are
# exposed by both.
"security": "scitex_audit.github",
"security": "scitex_security.github",
"session": "scitex_session", # @scitex.session decorator + INJECTED sentinel
"tex": "scitex_tex",
}
Expand Down
Loading