microsoft-agents-storage-cosmos 0.3.0.dev0__tar.gz → 0.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.
Files changed (18) hide show
  1. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/PKG-INFO +2 -2
  2. {microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft/agents → microsoft_agents_storage_cosmos-0.3.1/microsoft_agents}/storage/cosmos/cosmos_db_storage.py +3 -3
  3. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/microsoft_agents_storage_cosmos.egg-info/PKG-INFO +2 -2
  4. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/microsoft_agents_storage_cosmos.egg-info/SOURCES.txt +4 -4
  5. microsoft_agents_storage_cosmos-0.3.1/microsoft_agents_storage_cosmos.egg-info/requires.txt +3 -0
  6. microsoft_agents_storage_cosmos-0.3.1/microsoft_agents_storage_cosmos.egg-info/top_level.txt +1 -0
  7. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/tests/test_cosmos_db_config.py +1 -1
  8. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/tests/test_cosmos_db_storage.py +3 -3
  9. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/tests/test_key_ops.py +1 -1
  10. microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft_agents_storage_cosmos.egg-info/requires.txt +0 -3
  11. microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft_agents_storage_cosmos.egg-info/top_level.txt +0 -1
  12. {microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft/agents → microsoft_agents_storage_cosmos-0.3.1/microsoft_agents}/storage/cosmos/__init__.py +0 -0
  13. {microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft/agents → microsoft_agents_storage_cosmos-0.3.1/microsoft_agents}/storage/cosmos/cosmos_db_storage_config.py +0 -0
  14. {microsoft_agents_storage_cosmos-0.3.0.dev0/microsoft/agents → microsoft_agents_storage_cosmos-0.3.1/microsoft_agents}/storage/cosmos/key_ops.py +0 -0
  15. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/microsoft_agents_storage_cosmos.egg-info/dependency_links.txt +0 -0
  16. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/pyproject.toml +0 -0
  17. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/setup.cfg +0 -0
  18. {microsoft_agents_storage_cosmos-0.3.0.dev0 → microsoft_agents_storage_cosmos-0.3.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-storage-cosmos
3
- Version: 0.3.0.dev0
3
+ Version: 0.3.1
4
4
  Summary: A Cosmos DB storage library for Microsoft Agents
5
5
  Author: Microsoft Corporation
6
6
  Project-URL: Homepage, https://github.com/microsoft/Agents
@@ -8,7 +8,7 @@ Classifier: Programming Language :: Python :: 3
8
8
  Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.9
11
- Requires-Dist: microsoft-agents-hosting-core==0.3.0.dev0
11
+ Requires-Dist: microsoft-agents-hosting-core==0.3.1
12
12
  Requires-Dist: azure-core
13
13
  Requires-Dist: azure-cosmos
14
14
  Dynamic: requires-dist
@@ -17,9 +17,9 @@ from azure.cosmos.aio import (
17
17
  import azure.cosmos.exceptions as cosmos_exceptions
18
18
  from azure.cosmos.partition_key import NonePartitionKeyValue
19
19
 
20
- from microsoft.agents.hosting.core.storage import AsyncStorageBase, StoreItem
21
- from microsoft.agents.hosting.core.storage._type_aliases import JSON
22
- from microsoft.agents.hosting.core.storage.error_handling import ignore_error
20
+ from microsoft_agents.hosting.core.storage import AsyncStorageBase, StoreItem
21
+ from microsoft_agents.hosting.core.storage._type_aliases import JSON
22
+ from microsoft_agents.hosting.core.storage.error_handling import ignore_error
23
23
 
24
24
  from .cosmos_db_storage_config import CosmosDBStorageConfig
25
25
  from .key_ops import sanitize_key
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-storage-cosmos
3
- Version: 0.3.0.dev0
3
+ Version: 0.3.1
4
4
  Summary: A Cosmos DB storage library for Microsoft Agents
5
5
  Author: Microsoft Corporation
6
6
  Project-URL: Homepage, https://github.com/microsoft/Agents
@@ -8,7 +8,7 @@ Classifier: Programming Language :: Python :: 3
8
8
  Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.9
11
- Requires-Dist: microsoft-agents-hosting-core==0.3.0.dev0
11
+ Requires-Dist: microsoft-agents-hosting-core==0.3.1
12
12
  Requires-Dist: azure-core
13
13
  Requires-Dist: azure-cosmos
14
14
  Dynamic: requires-dist
@@ -1,9 +1,9 @@
1
1
  pyproject.toml
2
2
  setup.py
3
- microsoft/agents/storage/cosmos/__init__.py
4
- microsoft/agents/storage/cosmos/cosmos_db_storage.py
5
- microsoft/agents/storage/cosmos/cosmos_db_storage_config.py
6
- microsoft/agents/storage/cosmos/key_ops.py
3
+ microsoft_agents/storage/cosmos/__init__.py
4
+ microsoft_agents/storage/cosmos/cosmos_db_storage.py
5
+ microsoft_agents/storage/cosmos/cosmos_db_storage_config.py
6
+ microsoft_agents/storage/cosmos/key_ops.py
7
7
  microsoft_agents_storage_cosmos.egg-info/PKG-INFO
8
8
  microsoft_agents_storage_cosmos.egg-info/SOURCES.txt
9
9
  microsoft_agents_storage_cosmos.egg-info/dependency_links.txt
@@ -0,0 +1,3 @@
1
+ microsoft-agents-hosting-core==0.3.1
2
+ azure-core
3
+ azure-cosmos
@@ -1,7 +1,7 @@
1
1
  import json
2
2
  import pytest
3
3
 
4
- from microsoft.agents.storage.cosmos import CosmosDBStorageConfig
4
+ from microsoft_agents.storage.cosmos import CosmosDBStorageConfig
5
5
 
6
6
  # thank you AI, again
7
7
 
@@ -10,10 +10,10 @@ from azure.cosmos import documents
10
10
  from azure.cosmos.aio import CosmosClient
11
11
  from azure.cosmos.exceptions import CosmosResourceNotFoundError
12
12
 
13
- from microsoft.agents.storage.cosmos import CosmosDBStorage, CosmosDBStorageConfig
14
- from microsoft.agents.storage.cosmos.key_ops import sanitize_key
13
+ from microsoft_agents.storage.cosmos import CosmosDBStorage, CosmosDBStorageConfig
14
+ from microsoft_agents.storage.cosmos.key_ops import sanitize_key
15
15
 
16
- from microsoft.agents.hosting.core.storage.storage_test_utils import (
16
+ from microsoft_agents.hosting.core.storage.storage_test_utils import (
17
17
  QuickCRUDStorageTests,
18
18
  MockStoreItem,
19
19
  MockStoreItemB,
@@ -1,6 +1,6 @@
1
1
  import hashlib
2
2
  import pytest
3
- from microsoft.agents.storage.cosmos.key_ops import truncate_key, sanitize_key
3
+ from microsoft_agents.storage.cosmos.key_ops import truncate_key, sanitize_key
4
4
 
5
5
  # thank you AI
6
6
 
@@ -1,3 +0,0 @@
1
- microsoft-agents-hosting-core==0.3.0.dev0
2
- azure-core
3
- azure-cosmos