Skip to content

Commit 1aeef74

Browse files
committed
last tweaks for the cycle
1 parent d0fa0d2 commit 1aeef74

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ WinPython tools
33

44
Copyright @ 2012-2013 Pierre Raybaut
55

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

88
Licensed under the terms of the MIT License
99
(see winpython/__init__.py for details)
@@ -29,7 +29,7 @@ WinPython build toolchain
2929
Dependencies
3030
------------
3131

32-
* Python3 >= 3.8
32+
* Python3 >= 3.9
3333

3434

3535
Requirements

make.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ def package_index_markdown(self) -> str:
104104
"""Generates a Markdown formatted package index page."""
105105
installed_tools_markdown = self._get_installed_tools_markdown()
106106
installed_packages_markdown = self._get_installed_packages_markdown()
107-
python_description = "Python programming language with standard library"
108107

109108
return f"""## WinPython {self.winpyver2 + self.flavor}
110109
@@ -122,7 +121,7 @@ def package_index_markdown(self) -> str:
122121
123122
Name | Version | Description
124123
-----|---------|------------
125-
[Python](http://www.python.org/) | {self.python_full_version} | {python_description}
124+
[Python](http://www.python.org/) | {self.python_full_version} | Python programming language with standard library
126125
{installed_packages_markdown}
127126
128127
</details>

winpython/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

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

winpython/associate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def register_in_registery(target, current=True, reg_type=winreg.REG_SZ, verbose=
123123

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

0 commit comments

Comments
 (0)