Skip to content

Commit 50282ce

Browse files
authored
Merge pull request winpython#2008 from stonebig/master
tweak fix
2 parents d743832 + cdb980c commit 50282ce

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/github_workflows_build-2026_02.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ jobs:
180180
shell: pwsh
181181
run: |
182182
& "$env:build_location\python\python.exe" -m pip install --upgrade --force-reinstall pip --no-warn-script-location
183-
& "$env:build_location\python\python.exe" -m pip install packaging
184183
& "$env:build_location\python\python.exe" -c "from wppm import wppm;dist=wppm.Distribution();dist.patch_standard_packages('pip', to_movable=True)"
185184
186185
- name: Download all requirements

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

wppm/diff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import sys
1111
import shutil
1212
from pathlib import Path
13-
from importlib.metadata import version
13+
from pip._vendor.packaging import version
1414
from . import utils
1515

1616
CHANGELOGS_DIR = Path(__file__).parent.parent / "changelogs"

0 commit comments

Comments
 (0)