This is an automated email from the ASF dual-hosted git repository.
brondsem pushed a commit to branch db/8354
in repository https://gitbox.apache.org/repos/asf/allura.git
commit aaafbb90c2d60e605b545fe83f2915306b39181c
Author: Dave Brondsema <dave@brondsema.net>
AuthorDate: Fri Mar 6 12:22:42 2020 -0500
[#8354] latest virtualenv works with py2 again
---
scripts/init-docker-dev.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/init-docker-dev.sh b/scripts/init-docker-dev.sh
index fa4905f..3e75f21 100755
--- a/scripts/init-docker-dev.sh
+++ b/scripts/init-docker-dev.sh
@@ -38,7 +38,7 @@ echo "# No robots.txt rules here" > /allura-data/www-misc/robots.txt
# share venv to allow update and sharing across containers
if [ ! -e /allura-data/virtualenv ]; then
echo -e "Creating virtualenv\n"
- pip install 'virtualenv < 20' # https://github.com/pypa/virtualenv/issues/1670
+ pip install 'virtualenv >= 20.0.8' # https://github.com/pypa/virtualenv/issues/1684
virtualenv /allura-data/virtualenv
ln -s /usr/lib/python2.7/dist-packages/pysvn /allura-data/virtualenv/lib/python2.7/site-packages/
echo # just a new line
|