tai42-storage-github 0.2.1__tar.gz → 0.2.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.
- {tai42_storage_github-0.2.1/src/tai42_storage_github.egg-info → tai42_storage_github-0.2.2}/PKG-INFO +2 -2
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/pyproject.toml +2 -2
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/tai-plugin.yml +1 -1
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2/src/tai42_storage_github.egg-info}/PKG-INFO +2 -2
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github.egg-info/requires.txt +1 -1
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/LICENSE +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/NOTICE +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/README.md +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/setup.cfg +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/__init__.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/client.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/py.typed +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/settings.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/storage.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github.egg-info/SOURCES.txt +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github.egg-info/dependency_links.txt +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github.egg-info/top_level.txt +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/tests/test_binary.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/tests/test_delete_dir.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/tests/test_import_graph.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/tests/test_plugin_spec.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/tests/test_registration.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/tests/test_security.py +0 -0
- {tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/tests/test_text.py +0 -0
{tai42_storage_github-0.2.1/src/tai42_storage_github.egg-info → tai42_storage_github-0.2.2}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tai42-storage-github
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: GitHub-backed Storage provider (text + binary/media) for the TAI ecosystem.
|
|
5
5
|
Author-email: tai42 <oss@tai42.ai>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -20,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
License-File: NOTICE
|
|
22
22
|
Requires-Dist: tai42-contract<0.4,>=0.3
|
|
23
|
-
Requires-Dist: tai42-kit<0.
|
|
23
|
+
Requires-Dist: tai42-kit<0.4,>=0.2
|
|
24
24
|
Requires-Dist: httpx>=0.28
|
|
25
25
|
Requires-Dist: pydantic>=2.12
|
|
26
26
|
Requires-Dist: pydantic-settings>=2.11
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tai42-storage-github"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.2"
|
|
8
8
|
description = "GitHub-backed Storage provider (text + binary/media) for the TAI ecosystem."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.13"
|
|
@@ -26,7 +26,7 @@ dependencies = [
|
|
|
26
26
|
# The pure interface contract (Storage, ObjectStat, assert_not_root, tai42_app).
|
|
27
27
|
"tai42-contract>=0.3,<0.4",
|
|
28
28
|
# Pooled clients + settings primitives (PooledClient, TaiBaseSettings, cache).
|
|
29
|
-
"tai42-kit>=0.2,<0.
|
|
29
|
+
"tai42-kit>=0.2,<0.4",
|
|
30
30
|
"httpx>=0.28",
|
|
31
31
|
"pydantic>=2.12",
|
|
32
32
|
"pydantic-settings>=2.11",
|
{tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2/src/tai42_storage_github.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tai42-storage-github
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: GitHub-backed Storage provider (text + binary/media) for the TAI ecosystem.
|
|
5
5
|
Author-email: tai42 <oss@tai42.ai>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -20,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
License-File: NOTICE
|
|
22
22
|
Requires-Dist: tai42-contract<0.4,>=0.3
|
|
23
|
-
Requires-Dist: tai42-kit<0.
|
|
23
|
+
Requires-Dist: tai42-kit<0.4,>=0.2
|
|
24
24
|
Requires-Dist: httpx>=0.28
|
|
25
25
|
Requires-Dist: pydantic>=2.12
|
|
26
26
|
Requires-Dist: pydantic-settings>=2.11
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/__init__.py
RENAMED
|
File without changes
|
{tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/client.py
RENAMED
|
File without changes
|
|
File without changes
|
{tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/settings.py
RENAMED
|
File without changes
|
{tai42_storage_github-0.2.1 → tai42_storage_github-0.2.2}/src/tai42_storage_github/storage.py
RENAMED
|
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
|