Skip to content

Commit

Permalink
testsuite: Use older mercurial for python2.6
Browse files Browse the repository at this point in the history
> Mercurial 4.2.2 is the last release to support Python 2.6.
> Use this if you need to run Mercurial on old platforms and
> you cannot update your Python installation.

See also: https://www.mercurial-scm.org/wiki/SupportedPythonVersions
  • Loading branch information
AlexanderS committed Aug 16, 2017
1 parent adf2d9f commit 9c21072
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testsuite/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ else
fi

if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
pip_wheel PyYAML pyinotify boto pylibacl Jinja2 mercurial guppy \
pip_wheel PyYAML pyinotify boto pylibacl Jinja2 guppy \
cherrypy python-augeas nose-show-skipped

if [[ ${PYVER:0:1} == "2" ]]; then
pip_wheel cheetah m2crypto
fi

if [[ $PYVER == "2.6" ]]; then
pip_wheel 'django<1.7' 'South<0.8'
pip_wheel 'django<1.7' 'South<0.8' 'mercurial<4.3'
else
pip_wheel django
pip_wheel django mercurial
fi
fi
fi
Expand Down

0 comments on commit 9c21072

Please sign in to comment.