Skip to content

Commit 11e984e

Browse files
committed
ensure a closer match between wppm -md and make.py markdowns
1 parent 77a2fe0 commit 11e984e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

winpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '16.5.20250608'
31+
__version__ = '16.5.20250614'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

winpython/wppm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def render_markdown_for_list(self, title, items):
7575
md += "Name | Version | Description\n"
7676
md += "-----|---------|------------\n"
7777
for name, url, version, summary in sorted(items, key=lambda p: (p[0].lower(), p[2])):
78-
md += f"[{name}]({url}) | {version} | {summary} \n"
78+
md += f"[{name}]({url}) | {version} | {summary}\n"
7979
md += "\n"
8080
return md
8181

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

100100
return f"""## WinPython {my_winpyver2 + my_flavor}

0 commit comments

Comments
 (0)