0
0
mirror of https://github.com/python-LimeReport/pypi.git synced 2024-12-23 16:23:00 +03:00

fix whl url

This commit is contained in:
Maxim Slipenko 2023-09-10 10:22:18 +00:00 committed by GitHub
parent d2b44a700c
commit 2ccd83151d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 2 additions and 28 deletions

View File

@ -1,8 +0,0 @@
<!DOCTYPE html>
<html>
<body>
<a href="/pypi/pyside6/">pyside6</a>
<a href="/pypi/shiboken6/">shiboken6</a>
<a href="/pypi/shiboken6-generator/">shiboken6-generator</a>
</body>
</html>

View File

@ -1,6 +0,0 @@
<!DOCTYPE html>
<html>
<body>
<a href="https://github.com/python-LimeReport/pyside/releases/download/py3.9-qt6.4.2/PySide6-6.4.2-6.4.2-cp37-abi3-manylinux_2_28_x86_64.whl" data-requires-python="<3.12,>=3.7">PySide6-6.4.2-6.4.2-cp37-abi3-manylinux_2_28_x86_64.whl</a>
</body>
</html>

View File

@ -1,6 +0,0 @@
<!DOCTYPE html>
<html>
<body>
<a href="https://github.com/python-LimeReport/pyside/releases/download/py3.9-qt6.4.2/shiboken6_generator-6.4.2-6.4.2-cp37-abi3-manylinux_2_28_x86_64.whl" data-requires-python="<3.12,>=3.7">shiboken6_generator-6.4.2-6.4.2-cp37-abi3-manylinux_2_28_x86_64.whl</a>
</body>
</html>

View File

@ -1,6 +0,0 @@
<!DOCTYPE html>
<html>
<body>
<a href="https://github.com/python-LimeReport/pyside/releases/download/py3.9-qt6.4.2/shiboken6-6.4.2-6.4.2-cp37-abi3-manylinux_2_28_x86_64.whl" data-requires-python="<3.12,>=3.7">shiboken6-6.4.2-6.4.2-cp37-abi3-manylinux_2_28_x86_64.whl</a>
</body>
</html>

View File

@ -1,8 +1,8 @@
{% macro whl_name(vs) %}{{ package | replace("-", "_") }}{{vs}}.whl{% endmacro %}
{% macro download_url(vs) %}{{meta.githubReleaseRepo}}/releases/download/{{version.tag}}/{{whl_name(vs)}}{% endmacro %}
{% macro download_url(vt, vs) %}{{meta.githubReleaseRepo}}/releases/download/{{vt}}/{{whl_name(vs)}}{% endmacro %}
{%- for version in packageVersions %}
{%- for vs in version.suffixes %}
<a href="{{download_url(vs)}}" data-requires-python="{{version.requires_python | safe}}">{{whl_name(vs)}}</a>
<a href="{{download_url(version.tag, vs)}}" data-requires-python="{{version.requires_python | safe}}">{{whl_name(vs)}}</a>
{%- endfor %}
{%- endfor %}