runspec-linux 0.1.0__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53,3 +53,6 @@ site/
53
53
  # External reference repos (cloned locally, not committed)
54
54
  chainlit-docs/
55
55
  .chainlit/
56
+
57
+ # Claude Code local config (machine-specific)
58
+ .claude/launch.json
@@ -1,5 +1,20 @@
1
1
  # runspec-linux Changelog
2
2
 
3
+ ## [0.1.2] — 2026-06-02
4
+
5
+ Lower the Python floor to 3.10 to match the core `runspec` library (no
6
+ 3.11-only features are used). Bump the `runspec` dependency floor to
7
+ `>=0.23.0`.
8
+
9
+ ## [0.1.1] — 2026-05-28
10
+
11
+ Enable `[config.logging]` for all 21 runnables. Each invocation now writes a
12
+ JSON audit record to `{venv}/logs/{runnable}.log` (rotates at 10 MB, keeps 14
13
+ backups) and emits a one-line run summary to stderr. The auto-added `--debug`
14
+ and `--no-summary` flags are available on every runnable. No code changes —
15
+ existing `print(json.dumps(...))` payloads are captured into the audit log via
16
+ the print-capture mechanism; stdout stays clean for pipe consumers.
17
+
3
18
  ## [0.1.0] — 2026-05-27
4
19
 
5
20
  Initial release.
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: runspec-linux
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Linux system admin runnables for runspec
5
- Requires-Python: >=3.11
6
- Requires-Dist: runspec>=0.17.0
5
+ Requires-Python: >=3.10
6
+ Requires-Dist: runspec>=0.23.0
7
7
  Provides-Extra: dev
8
8
  Requires-Dist: mypy; extra == 'dev'
9
9
  Requires-Dist: pytest>=8.0; extra == 'dev'
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "runspec-linux"
7
- version = "0.1.0"
8
- requires-python = ">=3.11"
7
+ version = "0.1.2"
8
+ requires-python = ">=3.10"
9
9
  description = "Linux system admin runnables for runspec"
10
10
  dependencies = [
11
- "runspec>=0.17.0",
11
+ "runspec>=0.23.0",
12
12
  ]
13
13
 
14
14
  [project.scripts]
@@ -45,11 +45,11 @@ dev = [
45
45
  testpaths = ["tests"]
46
46
 
47
47
  [tool.mypy]
48
- python_version = "3.11"
48
+ python_version = "3.10"
49
49
 
50
50
  [tool.ruff]
51
51
  line-length = 200
52
- target-version = "py311"
52
+ target-version = "py310"
53
53
 
54
54
  [tool.ruff.lint]
55
55
  select = ["E", "F", "I", "UP", "B", "SIM"]
@@ -1,6 +1,10 @@
1
1
  [config]
2
2
  autonomy-default = "autonomous"
3
3
 
4
+ [config.logging]
5
+ rotate = "10 MB"
6
+ keep = 14
7
+
4
8
  # ── System monitoring ─────────────────────────────────────────────────────────
5
9
 
6
10
  [system-info]