We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d94dae2 commit ae5fd60Copy full SHA for ae5fd60
2 files changed
wppm/__init__.py
@@ -28,6 +28,6 @@
28
OTHER DEALINGS IN THE SOFTWARE.
29
"""
30
31
-__version__ = '17.5.20260524'
+__version__ = '17.5.20260525'
32
__license__ = __doc__
33
__project_url__ = 'http://winpython.github.io/'
wppm/diff.py
@@ -10,7 +10,10 @@
10
import sys
11
import shutil
12
from pathlib import Path
13
-from packaging import version
+try:
14
+ from packaging import version
15
+except ModuleNotFoundError:
16
+ from pip._vendor.packaging import version
17
from . import utils
18
19
CHANGELOGS_DIR = Path(__file__).parent.parent / "changelogs"
0 commit comments