mneme-code 3.6.2__tar.gz → 4.1.0__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.
- {mneme_code-3.6.2 → mneme_code-4.1.0}/.gitignore +4 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/PKG-INFO +4 -4
- {mneme_code-3.6.2 → mneme_code-4.1.0}/pyproject.toml +3 -3
- {mneme_code-3.6.2 → mneme_code-4.1.0}/README.md +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/mneme_code/__init__.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/mneme_code/agents.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/mneme_code/cli.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/mneme_code/failure.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/mneme_code/py.typed +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/mneme_code/resolve.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/mneme_code/stacktrace.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/mneme_code/testrun.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/mneme_code/trajectory.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/tests/__init__.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/tests/test_agents.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/tests/test_branch_aware.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/tests/test_mneme_code.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/tests/test_testrun.py +0 -0
- {mneme_code-3.6.2 → mneme_code-4.1.0}/tests/test_trajectory.py +0 -0
|
@@ -94,3 +94,7 @@ secrets/
|
|
|
94
94
|
# Private content — never commit (dual-remote leak guard)
|
|
95
95
|
docs/_internal/
|
|
96
96
|
.github/sanitization-patterns.txt
|
|
97
|
+
|
|
98
|
+
# Session-scoped diagnostic reports: these summarise a private vault and
|
|
99
|
+
# must never enter the public repository. Kept out of tracking by name.
|
|
100
|
+
tasks/4.1-*.md
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
2
|
Name: mneme-code
|
|
3
|
-
Version:
|
|
3
|
+
Version: 4.1.0
|
|
4
4
|
Summary: Deterministic Python code-failure memory layer for mneme: redact-before-store, provenance-labelled FailureMemory, vault-ready markdown output.
|
|
5
5
|
Author: Onour Impram
|
|
6
6
|
License: Apache-2.0
|
|
@@ -14,8 +14,8 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.14
|
|
15
15
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
16
|
Requires-Python: >=3.11
|
|
17
|
-
Requires-Dist: mneme-core<4
|
|
18
|
-
Requires-Dist: mneme-graph
|
|
17
|
+
Requires-Dist: mneme-core<5,>=4.1.0
|
|
18
|
+
Requires-Dist: mneme-graph<5,>=4.1.0
|
|
19
19
|
Provides-Extra: dev
|
|
20
20
|
Requires-Dist: mypy>=1.10; extra == 'dev'
|
|
21
21
|
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "mneme-code"
|
|
7
|
-
version = "
|
|
7
|
+
version = "4.1.0"
|
|
8
8
|
description = "Deterministic Python code-failure memory layer for mneme: redact-before-store, provenance-labelled FailureMemory, vault-ready markdown output."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -22,8 +22,8 @@ classifiers = [
|
|
|
22
22
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
23
23
|
]
|
|
24
24
|
dependencies = [
|
|
25
|
-
"mneme-core>=
|
|
26
|
-
"mneme-graph>=
|
|
25
|
+
"mneme-core>=4.1.0,<5",
|
|
26
|
+
"mneme-graph>=4.1.0,<5",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
[project.optional-dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|