Skip to content

ensure a closer match between wppm -md and make.py markdowns #1644

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion winpython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
OTHER DEALINGS IN THE SOFTWARE.
"""

__version__ = '16.5.20250608'
__version__ = '16.5.20250614'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'
4 changes: 2 additions & 2 deletions winpython/wppm.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def render_markdown_for_list(self, title, items):
md += "Name | Version | Description\n"
md += "-----|---------|------------\n"
for name, url, version, summary in sorted(items, key=lambda p: (p[0].lower(), p[2])):
md += f"[{name}]({url}) | {version} | {summary} \n"
md += f"[{name}]({url}) | {version} | {summary}\n"
md += "\n"
return md

Expand All @@ -94,7 +94,7 @@ def generate_package_index_markdown(self, python_executable_directory: str|None
wheelhouse_list = []
my_wheeldir = Path(wheeldir) if wheeldir else self.wheelhouse / 'included.wheels'
if my_wheeldir.is_dir():
wheelhouse_list = [(name, f"https://pypi.org/project/{name}", version, summary)
wheelhouse_list = [(name, f"https://pypi.org/project/{name}", version, utils.sum_up(summary))
for name, version, summary in wh.list_packages_with_metadata(str(my_wheeldir)) ]

return f"""## WinPython {my_winpyver2 + my_flavor}
Expand Down