Skip to content

Commit beec1a9

Browse files
committed
fix package sorting issue #2023
1 parent 0e34459 commit beec1a9

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/github_workflows_build-2026_02.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ jobs:
7474
}
7575
'3.14' {
7676
Add-Content -Path $env:GITHUB_OUTPUT -Value 'ver2=3.14.5.0'
77-
Add-Content -Path $env:GITHUB_OUTPUT -Value 'src=https://github.com/astral-sh/python-build-standalone/releases/download/20260508/cpython-3.14.5rc1+20260508-x86_64-pc-windows-msvc-install_only_stripped.tar.gz'
78-
Add-Content -Path $env:GITHUB_OUTPUT -Value 'sha=406c68b93432e239c8bd92f5ab343b02e7b2d689034cf69f440199a61a62debc'
77+
Add-Content -Path $env:GITHUB_OUTPUT -Value 'src=https://github.com/astral-sh/python-build-standalone/releases/download/20260510/cpython-3.14.5+20260510-x86_64-pc-windows-msvc-install_only_stripped.tar.gz'
78+
Add-Content -Path $env:GITHUB_OUTPUT -Value 'sha=4d26ade49e9571ccb3bd1a88cfc72c52b11a9a9f6e204a57f38592aed137566a'
7979
}
8080
'3.14F' {
8181
Add-Content -Path $env:GITHUB_OUTPUT -Value 'ver2=3.14.5.0'
82-
Add-Content -Path $env:GITHUB_OUTPUT -Value 'src=https://github.com/astral-sh/python-build-standalone/releases/download/20260508/cpython-3.14.5rc1+20260508-x86_64-pc-windows-msvc-freethreaded-install_only_stripped.tar.gz'
83-
Add-Content -Path $env:GITHUB_OUTPUT -Value 'sha=1c7870772ee202659396f9d3b1b077afd21fb7762a40dc6e2cff2f57d1f07463'
82+
Add-Content -Path $env:GITHUB_OUTPUT -Value 'src=https://github.com/astral-sh/python-build-standalone/releases/download/20260510/cpython-3.14.5+20260510-x86_64-pc-windows-msvc-freethreaded-install_only_stripped.tar.gz'
83+
Add-Content -Path $env:GITHUB_OUTPUT -Value 'sha=780df413efe4992c751bff3f84e63c54ccffa11fd26487378ff9de459375e409'
8484
}
8585
'3.15' {
8686
Add-Content -Path $env:GITHUB_OUTPUT -Value 'ver2=3.15.0.2'

wppm/__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__ = '17.4.20260510'
31+
__version__ = '17.4.20260511'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

wppm/piptree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def _get_requires(self, package: Distribution) -> List[Dict[str, str]]:
130130
if req_marker != "":
131131
req_add["req_marker"] = req_marker
132132
requires.append(req_add)
133-
return requires
133+
return sorted(requires, key=lambda x: x["req_key"])
134134

135135
def _get_provides(self, package: Distribution) -> Dict[str, None]:
136136
"""Extract provided extras from package requirements."""

0 commit comments

Comments
 (0)