Merge pull request #927 from Kidev/fix_926
Some checks failed
Check tox tests / Check packaging 📦 (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / Build package (push) Has been cancelled
Test on GH actions environment / test (binary, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.0) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.1) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.7.3) (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / publish Python 🐍 distributions 📦 to PyPI (push) Has been cancelled

Fix spec version input for `all_os` `wasm` not detecting `wasm_*` architectures for Qt >= 6.8.0
This commit is contained in:
Hiroshi Miura
2025-11-06 18:19:28 +09:00
committed by GitHub

View File

@@ -788,7 +788,7 @@ class MetadataFactory:
return (
self.archive_id.host == "all_os"
and self.archive_id.target in ArchiveId.TARGETS_FOR_HOST["all_os"]
and ver in SimpleSpec("6.7.*")
and ver >= Version("6.7.0")
)
def filter_by(ver: Version, ext: str) -> bool: