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.
Files changed (33) hide show
  1. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/.github/workflows/auto-release.yml +18 -7
  2. {strands_diffusers-0.1.0/strands_diffusers.egg-info → strands_diffusers-0.1.1}/PKG-INFO +2 -1
  3. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/pyproject.toml +1 -0
  4. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/requirements.txt +1 -0
  5. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/_version.py +3 -3
  6. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1/strands_diffusers.egg-info}/PKG-INFO +2 -1
  7. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/requires.txt +1 -0
  8. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/.github/workflows/ci.yml +0 -0
  9. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/.gitignore +0 -0
  10. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/README.md +0 -0
  11. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/README.md +0 -0
  12. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/SETUP_COSMOS.md +0 -0
  13. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/cosmos_action_policy.py +0 -0
  14. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/gallery_20.py +0 -0
  15. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/smoke.py +0 -0
  16. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/text_to_image.py +0 -0
  17. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/text_to_video.py +0 -0
  18. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/examples/visualize_actions.py +0 -0
  19. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/setup.cfg +0 -0
  20. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/setup.py +0 -0
  21. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/__init__.py +0 -0
  22. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/__init__.py +0 -0
  23. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/engine.py +0 -0
  24. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/io.py +0 -0
  25. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/registry.py +0 -0
  26. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/core/viz.py +0 -0
  27. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/tools/__init__.py +0 -0
  28. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers/tools/use_diffusers.py +0 -0
  29. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/SOURCES.txt +0 -0
  30. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/dependency_links.txt +0 -0
  31. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/strands_diffusers.egg-info/top_level.txt +0 -0
  32. {strands_diffusers-0.1.0 → strands_diffusers-0.1.1}/tests/test_action_io.py +0 -0
  33. {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
- if ! ls dist/ | grep -q "${{ steps.get_version.outputs.version }}"; then
47
- echo "::error::Built artifact does not match tag version ${{ steps.get_version.outputs.version }}"
48
- ls dist/
49
- exit 1
50
- fi
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.0
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"
@@ -37,6 +37,7 @@ dependencies = [
37
37
  "pillow",
38
38
  "numpy",
39
39
  "accelerate",
40
+ "matplotlib",
40
41
  ]
41
42
 
42
43
  [project.optional-dependencies]
@@ -5,3 +5,4 @@ torch
5
5
  pillow
6
6
  numpy
7
7
  accelerate
8
+ matplotlib
@@ -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.0'
22
- __version_tuple__ = version_tuple = (0, 1, 0)
21
+ __version__ = version = '0.1.1'
22
+ __version_tuple__ = version_tuple = (0, 1, 1)
23
23
 
24
- __commit_id__ = commit_id = 'gf88236ad0'
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.0
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"
@@ -5,6 +5,7 @@ torch
5
5
  pillow
6
6
  numpy
7
7
  accelerate
8
+ matplotlib
8
9
 
9
10
  [all]
10
11
  strands-diffusers[audio,dev,video]