From commits-return-17169-apmail-allura-commits-archive=allura.apache.org@allura.apache.org Tue Mar 10 15:58:49 2020 Return-Path: X-Original-To: apmail-allura-commits-archive@www.apache.org Delivered-To: apmail-allura-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by minotaur.apache.org (Postfix) with SMTP id 8FCAE19EFD for ; Tue, 10 Mar 2020 15:58:49 +0000 (UTC) Received: (qmail 56628 invoked by uid 500); 10 Mar 2020 15:58:49 -0000 Delivered-To: apmail-allura-commits-archive@allura.apache.org Received: (qmail 56563 invoked by uid 500); 10 Mar 2020 15:58:49 -0000 Mailing-List: contact commits-help@allura.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@allura.apache.org Delivered-To: mailing list commits@allura.apache.org Received: (qmail 56526 invoked by uid 99); 10 Mar 2020 15:58:48 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Mar 2020 15:58:48 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id B9B0E8DACC; Tue, 10 Mar 2020 15:58:48 +0000 (UTC) Date: Tue, 10 Mar 2020 15:58:49 +0000 To: "commits@allura.apache.org" Subject: [allura] 01/16: [#8354] latest virtualenv works with py2 again MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: brondsem@apache.org In-Reply-To: <158385592838.4369.8528853790722396612@gitbox.apache.org> References: <158385592838.4369.8528853790722396612@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: allura X-Git-Refname: refs/heads/db/8354 X-Git-Reftype: branch X-Git-Rev: aaafbb90c2d60e605b545fe83f2915306b39181c X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20200310155848.B9B0E8DACC@gitbox.apache.org> 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 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