Skip to content

last tweaks for the cycle #1573

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
Apr 25, 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
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WinPython tools

Copyright @ 2012-2013 Pierre Raybaut

Copyright @ 2014-2024+ The Winpython development team https://github.com/winpython/
Copyright @ 2014-2025+ The Winpython development team https://github.com/winpython/

Licensed under the terms of the MIT License
(see winpython/__init__.py for details)
Expand All @@ -29,7 +29,7 @@ WinPython build toolchain
Dependencies
------------

* Python3 >= 3.8
* Python3 >= 3.9


Requirements
Expand Down
3 changes: 1 addition & 2 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ def package_index_markdown(self) -> str:
"""Generates a Markdown formatted package index page."""
installed_tools_markdown = self._get_installed_tools_markdown()
installed_packages_markdown = self._get_installed_packages_markdown()
python_description = "Python programming language with standard library"

return f"""## WinPython {self.winpyver2 + self.flavor}

Expand All @@ -122,7 +121,7 @@ def package_index_markdown(self) -> str:

Name | Version | Description
-----|---------|------------
[Python](http://www.python.org/) | {self.python_full_version} | {python_description}
[Python](http://www.python.org/) | {self.python_full_version} | Python programming language with standard library
{installed_packages_markdown}

</details>
Expand Down
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__ = '15.3.20250417'
__version__ = '15.3.20250425'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'
2 changes: 1 addition & 1 deletion winpython/associate.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def register_in_registery(target, current=True, reg_type=winreg.REG_SZ, verbose=

# --- Shell commands ---
for ext, ftype in ext_map.items():
dynamic_entries.append((f"Software\\Classes\\{ftype}\\shell\\open\\command", None, f'"{pythonw_exe if ftype=='Python.NoConFile' else python_exe} if " "%1" %*'))
dynamic_entries.append((f"Software\\Classes\\{ftype}\\shell\\open\\command", None, f'''"{pythonw_exe if ftype=='Python.NoConFile' else python_exe}" "%1" %*'''))
lost_entries.append((f"Software\\Classes\\{ftype}\\shell\\open", None, None))
lost_entries.append((f"Software\\Classes\\{ftype}\\shell", None, None))

Expand Down