forked from pool/python-virtualenvwrapper
- add virtualenvwrapper-4.8.4-python_version.patch to use python3 instead of python2 OBS-URL: https://build.opensuse.org/request/show/757202 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenvwrapper?expand=0&rev=65
14 lines
525 B
Diff
14 lines
525 B
Diff
Index: virtualenvwrapper-4.8.4/virtualenvwrapper.sh
|
|
===================================================================
|
|
--- virtualenvwrapper-4.8.4.orig/virtualenvwrapper.sh
|
|
+++ virtualenvwrapper-4.8.4/virtualenvwrapper.sh
|
|
@@ -47,7 +47,7 @@
|
|
# Locate the global Python where virtualenvwrapper is installed.
|
|
if [ "${VIRTUALENVWRAPPER_PYTHON:-}" = "" ]
|
|
then
|
|
- VIRTUALENVWRAPPER_PYTHON="$(command \which python)"
|
|
+ VIRTUALENVWRAPPER_PYTHON="$(command \which python3)"
|
|
fi
|
|
|
|
# Set the name of the virtualenv app to use.
|