agentledger-postgres 1.5.0__tar.gz → 1.5.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.
- {agentledger_postgres-1.5.0 → agentledger_postgres-1.5.2}/PKG-INFO +3 -7
- {agentledger_postgres-1.5.0 → agentledger_postgres-1.5.2}/README.md +1 -5
- {agentledger_postgres-1.5.0 → agentledger_postgres-1.5.2}/pyproject.toml +2 -2
- {agentledger_postgres-1.5.0 → agentledger_postgres-1.5.2}/src/agentledger_postgres/__init__.py +1 -1
- {agentledger_postgres-1.5.0 → agentledger_postgres-1.5.2}/.gitignore +0 -0
- {agentledger_postgres-1.5.0 → agentledger_postgres-1.5.2}/examples/README.md +0 -0
- {agentledger_postgres-1.5.0 → agentledger_postgres-1.5.2}/tests/test_import.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentledger-postgres
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.2
|
|
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.5
|
|
13
|
+
Requires-Dist: agentledger-runtime<2,>=1.5.2
|
|
14
14
|
Requires-Dist: psycopg[binary]>=3.1
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
|
|
@@ -35,9 +35,5 @@ This package keeps runtime-core dependency-light while making Postgres an explic
|
|
|
35
35
|
Certification:
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
python3 -m agentledger adapter certify --kind postgres --adapter-version 1.5.
|
|
38
|
+
python3 -m agentledger adapter certify --kind postgres --adapter-version 1.5.2
|
|
39
39
|
```
|
|
40
|
-
|
|
41
|
-
---
|
|
42
|
-
|
|
43
|
-
generated by codex cli
|
|
@@ -19,9 +19,5 @@ This package keeps runtime-core dependency-light while making Postgres an explic
|
|
|
19
19
|
Certification:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
python3 -m agentledger adapter certify --kind postgres --adapter-version 1.5.
|
|
22
|
+
python3 -m agentledger adapter certify --kind postgres --adapter-version 1.5.2
|
|
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.5.
|
|
7
|
+
version = "1.5.2"
|
|
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.5,<2",
|
|
15
|
+
"agentledger-runtime>=1.5.2,<2",
|
|
16
16
|
"psycopg[binary]>=3.1",
|
|
17
17
|
]
|
|
18
18
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|