Skip to content

Commit d2110ff

Browse files
committed
revert: "ci: install Python 3.6 that is required by newer version of html5validator to fix the build on TravisCI"
This reverts commit 0e09fac. During migration to GitHub Actions (#1154), in commit 661444c we have started to use containers with Ubuntu 20.04 that has Python 3.8.10 so this workaround isn't needed anymore. Relate to #1533
1 parent 10eada3 commit d2110ff

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ before_script:
2020
mysql -u root -e 'CREATE DATABASE mystamps CHARACTER SET utf8;';
2121
mkdir -p /tmp/uploads /tmp/preview;
2222
cp src/main/resources/test/test.png /tmp/uploads/1.png;
23-
sudo add-apt-repository -y ppa:jblgf0/python;
24-
sudo apt-get -qq update;
25-
sudo apt-get install -y python3.6 python3-pip;
26-
curl https://bootstrap.pypa.io/pip/3.6/get-pip.py | sudo -H python3.6;
27-
pip3 install --user ansible==2.9.2;
23+
pip install --user ansible==2.9.2;
2824
if [ "$TRAVIS_PULL_REQUEST" != 'false' ]; then
2925
gem install danger:8.2.2 nokogiri:1.10.10 --no-document;
3026
fi;

0 commit comments

Comments
 (0)