diff --git a/winpython/__init__.py b/winpython/__init__.py index d169819a..0fe7dcc2 100644 --- a/winpython/__init__.py +++ b/winpython/__init__.py @@ -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/' diff --git a/winpython/wppm.py b/winpython/wppm.py index 308030ce..59f14ff8 100644 --- a/winpython/wppm.py +++ b/winpython/wppm.py @@ -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 @@ -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}