This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Mo
Recipients Mo, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-11-06.16:36:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1573058162.78.0.359930716888.issue38583@roundup.psfhosted.org>
In-reply-to
Content
I had also tested with pathlib and posixpath and come to the same conclusion.

As suggested by you, I looked into `activate` determining path when run. I believe this should do the trick (My bashfoo isn't strong, this is mostly from https://stackoverflow.com/a/179231):

pushd . > /dev/null
SCRIPT_PATH="${BASH_SOURCE[0]}"
if ([ -h "${SCRIPT_PATH}" ]); then
  while([ -h "${SCRIPT_PATH}" ]); do cd `dirname "$SCRIPT_PATH"`; 
  SCRIPT_PATH=`readlink "${SCRIPT_PATH}"`; done
fi
cd `dirname ${SCRIPT_PATH}` > /dev/null
cd .. > /dev/null
SCRIPT_PATH=`pwd`;
popd  > /dev/null

VIRTUAL_ENV="$SCRIPT_PATH"
History
Date User Action Args
2019-11-06 16:36:02Mosetrecipients: + Mo, paul.moore, tim.golden, zach.ware, steve.dower
2019-11-06 16:36:02Mosetmessageid: <1573058162.78.0.359930716888.issue38583@roundup.psfhosted.org>
2019-11-06 16:36:02Molinkissue38583 messages
2019-11-06 16:36:02Mocreate