agentledger-postgres 1.2.4__tar.gz → 1.3.1__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.2.4 → agentledger_postgres-1.3.1}/PKG-INFO +4 -5
- {agentledger_postgres-1.2.4 → agentledger_postgres-1.3.1}/README.md +2 -3
- {agentledger_postgres-1.2.4 → agentledger_postgres-1.3.1}/pyproject.toml +2 -2
- {agentledger_postgres-1.2.4 → agentledger_postgres-1.3.1}/src/agentledger_postgres/__init__.py +1 -1
- {agentledger_postgres-1.2.4 → agentledger_postgres-1.3.1}/.gitignore +0 -0
- {agentledger_postgres-1.2.4 → agentledger_postgres-1.3.1}/examples/README.md +0 -0
- {agentledger_postgres-1.2.4 → agentledger_postgres-1.3.1}/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.3.1
|
|
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.3
|
|
14
14
|
Requires-Dist: psycopg[binary]>=3.1
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
|
|
@@ -30,11 +30,10 @@ store = PostgresStore(PostgresStoreConfig.from_env())
|
|
|
30
30
|
store.init()
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
This package keeps
|
|
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.3.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.3.1
|
|
39
39
|
```
|
|
40
|
-
|
|
@@ -14,11 +14,10 @@ store = PostgresStore(PostgresStoreConfig.from_env())
|
|
|
14
14
|
store.init()
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
This package keeps
|
|
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.3.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.3.1
|
|
23
23
|
```
|
|
24
|
-
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agentledger-postgres"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.3.1"
|
|
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.3,<2",
|
|
16
16
|
"psycopg[binary]>=3.1",
|
|
17
17
|
]
|
|
18
18
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|