Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 41e8766

Browse filesBrowse files
authored
Merge pull request #1573 from stonebig/master
last tweaks for the cycle
2 parents d337ee0 + 1aeef74 commit 41e8766
Copy full SHA for 41e8766

File tree

Expand file treeCollapse file tree

4 files changed

+5
-6
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+5
-6
lines changed

‎README.rst

Copy file name to clipboardExpand all lines: README.rst
+2-2Lines changed: 2 additions & 2 deletions
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

Copy file name to clipboardExpand all lines: make.py
+1-2Lines changed: 1 addition & 2 deletions
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

Copy file name to clipboardExpand all lines: winpython/__init__.py
+1-1Lines 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__ = '15.3.20250417'
31+
__version__ = '15.3.20250425'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

‎winpython/associate.py

Copy file name to clipboardExpand all lines: winpython/associate.py
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.