Skip to content

Commit 3c3dd75

Browse files
committed
Allow Genshi to be installed insecurely, for now.
Ergh. It's not like there's not been masses of warning about this.
1 parent a2d58b8 commit 3c3dd75

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

requirements-install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ pip install -r requirements-test.txt
99

1010
if [[ $USE_OPTIONAL == "true" && $TRAVIS_PYTHON_VERSION != "pypy" ]]; then
1111
if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then
12-
pip install -r requirements-optional-2.6.txt
12+
pip install --allow-external Genshi --allow-insecure Genshi -r requirements-optional-2.6.txt
1313
else
14-
pip install -r requirements-optional-cpython.txt
14+
pip install --allow-external Genshi --allow-insecure Genshi -r requirements-optional-cpython.txt
1515
fi
1616
fi

tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ deps =
99
commands =
1010
{envbindir}/nosetests -q
1111
{toxinidir}/flake8-run.sh
12+
install_command =
13+
pip install --allow-external Genshi --allow-insecure Genshi {opts} {packages}
1214

1315
[testenv:pypy]
1416
# lxml doesn't work and datrie doesn't make sense

0 commit comments

Comments
 (0)