From 79c9ac434a47a6ce1e6c87f2060f1b9a19118f87 Mon Sep 17 00:00:00 2001 From: "emdee@spm.plastiras.org" Date: Sat, 10 Feb 2024 23:47:40 +0000 Subject: [PATCH] update --- Makefile | 1 + src/exclude_badExits/exclude_badExits.py | 5 +++-- src/exclude_badExits/exclude_utils.py | 4 ++-- .../{support_onions.py => support_onions.py.bak} | 0 4 files changed, 6 insertions(+), 4 deletions(-) rename src/exclude_badExits/{support_onions.py => support_onions.py.bak} (100%) diff --git a/Makefile b/Makefile index 592d60f..d41c6a5 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ lint:: install:: ${PIP_EXE_MSYS} --python ${PYTHON_EXE_MSYS} install \ + --no-deps \ --target ${PREFIX}/lib/python${PYTHON_MINOR}/site-packages/ \ --upgrade . diff --git a/src/exclude_badExits/exclude_badExits.py b/src/exclude_badExits/exclude_badExits.py index a1fbffa..7c21a28 100755 --- a/src/exclude_badExits/exclude_badExits.py +++ b/src/exclude_badExits/exclude_badExits.py @@ -193,8 +193,9 @@ try: except: ub_ctx = RR_TYPE_TXT = RR_CLASS_IN = None -from support_onions import (bAreWeConnected, icheck_torrc, lIntroductionPoints, - yKNOWN_NODNS, zResolveDomain) +from toxygen_wrapper.tests.support_onions import ( + bAreWeConnected, icheck_torrc, lIntroductionPoints, + yKNOWN_NODNS, zResolveDomain) from trustor_poc import TrustorError, idns_validate try: diff --git a/src/exclude_badExits/exclude_utils.py b/src/exclude_badExits/exclude_utils.py index 12aa3ea..7301759 100644 --- a/src/exclude_badExits/exclude_utils.py +++ b/src/exclude_badExits/exclude_utils.py @@ -11,8 +11,8 @@ import logging import warnings global LOG -from support_onions import (oGetStemController, - vwait_for_controller,) +from toxygen_wrapper.tests.support_onions import (woGetStemController, + vwait_for_controller,) try: from ruamel.yaml import YAML diff --git a/src/exclude_badExits/support_onions.py b/src/exclude_badExits/support_onions.py.bak similarity index 100% rename from src/exclude_badExits/support_onions.py rename to src/exclude_badExits/support_onions.py.bak