thoth-station/mi

Deliver Missing Module

xtuchyna opened this issue · 2 comments

Hey, AICoE-CI!

Please deliver the package module for the following tag, as it missing on PyPI:

Tag: v2.10.3

This is failing due to this reason:

Uploading distributions to https://upload.pypi.org/legacy/
Uploading srcopsmetrics-2.10.3-py3-none-any.whl
100%|██████████| 88.9k/88.9k [00:00<00:00, 94.5kB/s]
Error during upload. Retry with the --verbose option for more details.
HTTPError: 400 Bad Request from https://upload.pypi.org/legacy/
The description failed to render for 'text/x-rst'. See https://pypi.org/help/#description-content-type for more information.

This line seems to be the culprit

mi/setup.py

Line 62 in 854e629

long_description_content_type="text/x-rst",

seems like rendering the utf-8 might be causing issue

mi/setup.py

Line 54 in 854e629

README: str = Path(HERE, "README.rst").read_text(encoding="utf-8")