This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cassandra-builds.git


The following commit(s) were added to refs/heads/master by this push:
     new 6cd5040  Keep build-scripts compatible with python2 by limiting 
setuptools <45
6cd5040 is described below

commit 6cd504054bde5ae5507dba6d25082304327c64fa
Author: mck <m...@apache.org>
AuthorDate: Mon Jan 13 21:23:03 2020 +0100

    Keep build-scripts compatible with python2 by limiting setuptools <45
    
    ref: https://github.com/pypa/virtualenv/issues/1493
---
 build-scripts/cassandra-artifacts.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/build-scripts/cassandra-artifacts.sh 
b/build-scripts/cassandra-artifacts.sh
index 35b632e..7cdda72 100755
--- a/build-scripts/cassandra-artifacts.sh
+++ b/build-scripts/cassandra-artifacts.sh
@@ -9,7 +9,8 @@
 # Sphinx is needed for the gen-doc target
 virtualenv venv
 source venv/bin/activate
-pip install Sphinx sphinx_rtd_theme
+# setuptools 45.0.0 requires python 3.5+
+pip install "setuptools<45" Sphinx sphinx_rtd_theme
 
 ################################
 #


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to