agentledger-postgres 1.4.1__tar.gz → 1.5.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.
- {agentledger_postgres-1.4.1 → agentledger_postgres-1.5.0}/PKG-INFO +8 -4
- {agentledger_postgres-1.4.1 → agentledger_postgres-1.5.0}/README.md +6 -2
- {agentledger_postgres-1.4.1 → agentledger_postgres-1.5.0}/examples/README.md +3 -0
- {agentledger_postgres-1.4.1 → agentledger_postgres-1.5.0}/pyproject.toml +2 -3
- {agentledger_postgres-1.4.1 → agentledger_postgres-1.5.0}/src/agentledger_postgres/__init__.py +1 -2
- {agentledger_postgres-1.4.1 → agentledger_postgres-1.5.0}/.gitignore +0 -0
- {agentledger_postgres-1.4.1 → agentledger_postgres-1.5.0}/tests/test_import.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentledger-postgres
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5.0
|
|
4
4
|
Summary: Postgres StateStore adapter package for AgentLedger
|
|
5
5
|
Project-URL: Homepage, https://github.com/yaogdu/AgentLedger
|
|
6
6
|
Project-URL: Repository, https://github.com/yaogdu/AgentLedger
|
|
@@ -10,7 +10,7 @@ Author: AgentLedger Contributors
|
|
|
10
10
|
License: Apache-2.0
|
|
11
11
|
Keywords: agents,postgres,runtime,state-store
|
|
12
12
|
Requires-Python: >=3.11
|
|
13
|
-
Requires-Dist: agentledger-runtime<2,>=1.
|
|
13
|
+
Requires-Dist: agentledger-runtime<2,>=1.5
|
|
14
14
|
Requires-Dist: psycopg[binary]>=3.1
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
|
|
@@ -30,10 +30,14 @@ store = PostgresStore(PostgresStoreConfig.from_env())
|
|
|
30
30
|
store.init()
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
This package keeps runtime-core dependency-light while making Postgres an explicit opt-in. It re-exports the stable adapter classes from `agentledger.storage_postgres` in the current `1.
|
|
33
|
+
This package keeps runtime-core dependency-light while making Postgres an explicit opt-in. It re-exports the stable adapter classes from `agentledger.storage_postgres` in the current `1.5.x` release train.
|
|
34
34
|
|
|
35
35
|
Certification:
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
python3 -m agentledger adapter certify --kind postgres --adapter-version 1.
|
|
38
|
+
python3 -m agentledger adapter certify --kind postgres --adapter-version 1.5.0
|
|
39
39
|
```
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
generated by codex cli
|
|
@@ -14,10 +14,14 @@ store = PostgresStore(PostgresStoreConfig.from_env())
|
|
|
14
14
|
store.init()
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
This package keeps runtime-core dependency-light while making Postgres an explicit opt-in. It re-exports the stable adapter classes from `agentledger.storage_postgres` in the current `1.
|
|
17
|
+
This package keeps runtime-core dependency-light while making Postgres an explicit opt-in. It re-exports the stable adapter classes from `agentledger.storage_postgres` in the current `1.5.x` release train.
|
|
18
18
|
|
|
19
19
|
Certification:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
python3 -m agentledger adapter certify --kind postgres --adapter-version 1.
|
|
22
|
+
python3 -m agentledger adapter certify --kind postgres --adapter-version 1.5.0
|
|
23
23
|
```
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
generated by codex cli
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agentledger-postgres"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.5.0"
|
|
8
8
|
description = "Postgres StateStore adapter package for AgentLedger"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -12,7 +12,7 @@ license = {text = "Apache-2.0"}
|
|
|
12
12
|
authors = [{name = "AgentLedger Contributors"}]
|
|
13
13
|
keywords = ["agents", "runtime", "postgres", "state-store"]
|
|
14
14
|
dependencies = [
|
|
15
|
-
"agentledger-runtime>=1.
|
|
15
|
+
"agentledger-runtime>=1.5,<2",
|
|
16
16
|
"psycopg[binary]>=3.1",
|
|
17
17
|
]
|
|
18
18
|
|
|
@@ -24,4 +24,3 @@ Issues = "https://github.com/yaogdu/AgentLedger/issues"
|
|
|
24
24
|
|
|
25
25
|
[tool.hatch.build.targets.wheel]
|
|
26
26
|
packages = ["src/agentledger_postgres"]
|
|
27
|
-
|
{agentledger_postgres-1.4.1 → agentledger_postgres-1.5.0}/src/agentledger_postgres/__init__.py
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from agentledger.storage_postgres import POSTGRES_SCHEMA_SQL, PostgresDependencyMissing, PostgresStore, PostgresStoreConfig
|
|
2
2
|
|
|
3
|
-
__version__ = "1.
|
|
3
|
+
__version__ = "1.5.0"
|
|
4
4
|
|
|
5
5
|
__all__ = [
|
|
6
6
|
"POSTGRES_SCHEMA_SQL",
|
|
@@ -9,4 +9,3 @@ __all__ = [
|
|
|
9
9
|
"PostgresStoreConfig",
|
|
10
10
|
"__version__",
|
|
11
11
|
]
|
|
12
|
-
|
|
File without changes
|
|
File without changes
|