Skip to content

Commit 6cd5040

Browse files
Keep build-scripts compatible with python2 by limiting setuptools <45
ref: pypa/virtualenv#1493
1 parent 5528779 commit 6cd5040

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build-scripts/cassandra-artifacts.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
# Sphinx is needed for the gen-doc target
1010
virtualenv venv
1111
source venv/bin/activate
12-
pip install Sphinx sphinx_rtd_theme
12+
# setuptools 45.0.0 requires python 3.5+
13+
pip install "setuptools<45" Sphinx sphinx_rtd_theme
1314

1415
################################
1516
#

0 commit comments

Comments
 (0)