Skip to content

Commit ae5fd60

Browse files
committed
another fix for the Cloud
1 parent d94dae2 commit ae5fd60

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

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

wppm/diff.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
import sys
1111
import shutil
1212
from pathlib import Path
13-
from packaging import version
13+
try:
14+
from packaging import version
15+
except ModuleNotFoundError:
16+
from pip._vendor.packaging import version
1417
from . import utils
1518

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

0 commit comments

Comments
 (0)