Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wppm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
OTHER DEALINGS IN THE SOFTWARE.
"""

__version__ = '17.3.20260412'
__version__ = '17.3.20260510'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'
4 changes: 3 additions & 1 deletion wppm/wppm.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import json
from pathlib import Path
from argparse import ArgumentParser, RawTextHelpFormatter
from . import utils, piptree, associate, diff, __version__
from . import utils, piptree, diff, __version__
from . import wheelhouse as wh
from operator import itemgetter
# Workaround for installing PyVISA on Windows from source:
Expand Down Expand Up @@ -340,6 +340,7 @@ def main(test=False):
print("continue ? Y/N")
theAnswer = input()
if theAnswer == "Y":
import associate
associate.register(dist.target, verbose=args.verbose)
sys.exit()
if args.unregisterWinPython:
Expand All @@ -352,6 +353,7 @@ def main(test=False):
print("continue ? Y/N")
theAnswer = input()
if theAnswer == "Y":
import associate
associate.unregister(dist.target, verbose=args.verbose)
sys.exit()
if utils.is_python_distribution(args.target):
Expand Down