strands-diffusers 0.1.0__tar.gz → 0.1.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.
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/.github/workflows/auto-release.yml +18 -7
- {strands_diffusers-0.1.0/strands_diffusers.egg-info → strands_diffusers-0.1.1}/PKG-INFO +2 -1
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/pyproject.toml +1 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/requirements.txt +1 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/_version.py +3 -3
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1/strands_diffusers.egg-info}/PKG-INFO +2 -1
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/requires.txt +1 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/.github/workflows/ci.yml +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/.gitignore +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/README.md +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/README.md +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/SETUP_COSMOS.md +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/cosmos_action_policy.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/gallery_20.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/smoke.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/text_to_image.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/text_to_video.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/visualize_actions.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/setup.cfg +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/setup.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/__init__.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/__init__.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/engine.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/io.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/registry.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/viz.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/tools/__init__.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/tools/use_diffusers.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/SOURCES.txt +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/dependency_links.txt +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/top_level.txt +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/tests/test_action_io.py +0 -0
- {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/tests/test_registry.py +0 -0
|
@@ -28,7 +28,7 @@ jobs:
|
|
|
28
28
|
- name: Install build tooling
|
|
29
29
|
run: |
|
|
30
30
|
python -m pip install --upgrade pip
|
|
31
|
-
pip install build twine
|
|
31
|
+
pip install build twine packaging
|
|
32
32
|
|
|
33
33
|
- name: Extract version from tag
|
|
34
34
|
id: get_version
|
|
@@ -40,14 +40,25 @@ jobs:
|
|
|
40
40
|
- name: Build package (version derived from git tag via setuptools-scm)
|
|
41
41
|
run: python -m build
|
|
42
42
|
|
|
43
|
-
- name: Verify built version matches tag
|
|
43
|
+
- name: Verify built version matches tag (PEP440-normalized)
|
|
44
44
|
run: |
|
|
45
45
|
ls -l dist/
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
46
|
+
python - "${{ steps.get_version.outputs.version }}" <<'EOF'
|
|
47
|
+
import sys, glob, os
|
|
48
|
+
from packaging.utils import parse_wheel_filename, parse_sdist_filename
|
|
49
|
+
from packaging.version import Version
|
|
50
|
+
tag = Version(sys.argv[1]) # normalize the tag (v1.01 -> 1.1)
|
|
51
|
+
built = set()
|
|
52
|
+
for w in glob.glob("dist/*.whl"):
|
|
53
|
+
built.add(parse_wheel_filename(os.path.basename(w))[1])
|
|
54
|
+
for s in glob.glob("dist/*.tar.gz"):
|
|
55
|
+
built.add(parse_sdist_filename(os.path.basename(s))[1])
|
|
56
|
+
print("tag:", tag, "built:", sorted(map(str, built)))
|
|
57
|
+
if tag not in built:
|
|
58
|
+
print(f"::error::Built version(s) {sorted(map(str,built))} != tag {tag}")
|
|
59
|
+
sys.exit(1)
|
|
60
|
+
print(f"✅ built version matches tag {tag}")
|
|
61
|
+
EOF
|
|
51
62
|
|
|
52
63
|
- name: Publish to PyPI
|
|
53
64
|
env:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: strands-diffusers
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: The universal entrypoint to HuggingFace diffusers for Strands agents — 100% pipeline & modality coverage, zero hardcoding. Special focus on Physical-AI world-foundation models (Cosmos) with robot action outputs.
|
|
5
5
|
Author-email: Cagatay Cali <cagataycali@icloud.com>
|
|
6
6
|
License: MIT
|
|
@@ -26,6 +26,7 @@ Requires-Dist: torch
|
|
|
26
26
|
Requires-Dist: pillow
|
|
27
27
|
Requires-Dist: numpy
|
|
28
28
|
Requires-Dist: accelerate
|
|
29
|
+
Requires-Dist: matplotlib
|
|
29
30
|
Provides-Extra: video
|
|
30
31
|
Requires-Dist: imageio[ffmpeg]; extra == "video"
|
|
31
32
|
Requires-Dist: opencv-python; extra == "video"
|
|
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
|
|
|
18
18
|
commit_id: str | None
|
|
19
19
|
__commit_id__: str | None
|
|
20
20
|
|
|
21
|
-
__version__ = version = '0.1.
|
|
22
|
-
__version_tuple__ = version_tuple = (0, 1,
|
|
21
|
+
__version__ = version = '0.1.1'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 1, 1)
|
|
23
23
|
|
|
24
|
-
__commit_id__ = commit_id = '
|
|
24
|
+
__commit_id__ = commit_id = 'g18a3f24d8'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: strands-diffusers
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: The universal entrypoint to HuggingFace diffusers for Strands agents — 100% pipeline & modality coverage, zero hardcoding. Special focus on Physical-AI world-foundation models (Cosmos) with robot action outputs.
|
|
5
5
|
Author-email: Cagatay Cali <cagataycali@icloud.com>
|
|
6
6
|
License: MIT
|
|
@@ -26,6 +26,7 @@ Requires-Dist: torch
|
|
|
26
26
|
Requires-Dist: pillow
|
|
27
27
|
Requires-Dist: numpy
|
|
28
28
|
Requires-Dist: accelerate
|
|
29
|
+
Requires-Dist: matplotlib
|
|
29
30
|
Provides-Extra: video
|
|
30
31
|
Requires-Dist: imageio[ffmpeg]; extra == "video"
|
|
31
32
|
Requires-Dist: opencv-python; extra == "video"
|
|
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
|
|
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
|
{strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/tools/use_diffusers.py
RENAMED
|
File without changes
|
|
File without changes
|
{strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|