Skip to content

Commit acef1b1

Browse files
committed
prepare for b2
1 parent a7165ad commit acef1b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

wppm/wppm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import json
1515
from pathlib import Path
1616
from argparse import ArgumentParser, RawTextHelpFormatter
17-
from . import utils, piptree, associate, diff
17+
from . import utils, piptree, associate, diff, __version__
1818
from . import wheelhouse as wh
1919
from operator import itemgetter
2020
# Workaround for installing PyVISA on Windows from source:
@@ -263,7 +263,7 @@ def main(test=False):
263263
registerWinPythonHelp = f"Register WinPython: associate file extensions, icons and context menu with this WinPython"
264264
unregisterWinPythonHelp = f"Unregister WinPython: de-associate file extensions, icons and context menu from this WinPython"
265265
parser = ArgumentParser(prog="wppm",
266-
description="WinPython Package Manager: handle a WinPython Distribution and its packages",
266+
description=f"WinPython Package Manager: handle a WinPython Distribution and its packages ({__version__})",
267267
formatter_class=RawTextHelpFormatter,
268268
)
269269
parser.add_argument("fname", metavar="package(s) or lockfile", nargs="*", default=[""], type=str, help="optional package names, wheels, or lockfile")

0 commit comments

Comments
 (0)