pyattest 1.0.4 publishes a universal wheel, but the 1.0.5 release uploaded on 2026-07-14 contains only the source archive on PyPI. Wheel-only environments therefore cannot take the latest certificate-validation fixes.
This can be reproduced directly against PyPI's release JSON, without involving a resolver or package cache:
for version in 1.0.4 1.0.5; do
curl --fail --location --silent --show-error \
"https://pypi.org/pypi/pyattest/$version/json" |
jq --raw-output '.urls[] | [.filename, .packagetype] | @tsv'
done
Output:
pyattest-1.0.4-py2.py3-none-any.whl bdist_wheel
pyattest-1.0.4.tar.gz sdist
pyattest-1.0.5.tar.gz sdist
There is no pyattest-1.0.5-*-none-any.whl (or any other bdist_wheel) in the 1.0.5 release.
Could a universal wheel built from the v1.0.5 tag be uploaded to the existing release, or included in a follow-up release?
pyattest 1.0.4 publishes a universal wheel, but the 1.0.5 release uploaded on 2026-07-14 contains only the source archive on PyPI. Wheel-only environments therefore cannot take the latest certificate-validation fixes.
This can be reproduced directly against PyPI's release JSON, without involving a resolver or package cache:
Output:
There is no
pyattest-1.0.5-*-none-any.whl(or any otherbdist_wheel) in the 1.0.5 release.Could a universal wheel built from the v1.0.5 tag be uploaded to the existing release, or included in a follow-up release?