Skip to content

Commit 4e98336

Browse files
committed
Removed the brotli dependency
1 parent a268083 commit 4e98336

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ RUN apt-get update && \
6767
tornado \
6868
wsaccel \
6969
xvfbwrapper \
70-
brotli \
7170
'fonttools>=3.44.0,<4.0.0' \
7271
marionette_driver \
7372
selenium \

docs/install.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ wptagent currently supports Windows, Linux and OSX for desktop browsers as well
1313
* ujson
1414
* tornado
1515
* wsaccel
16-
* brotli
1716
* fonttools
1817
* future
1918
* bind9utils (Linux only, for rndc)
@@ -136,7 +135,7 @@ brew install libvpx ffmpeg imagemagick geckodriver ios-webkit-debug-proxy node g
136135
```
137136
* Python3 and pip3 should have been installed as part of the homebrew install. The Python 3 libraries should be installed through pip3:
138137
```bash
139-
pip3 install PyObjC ujson dnspython monotonic pillow psutil requests tornado wsaccel brotli fonttools selenium future usbmuxwrapper
138+
pip3 install PyObjC ujson dnspython monotonic pillow psutil requests tornado wsaccel fonttools selenium future usbmuxwrapper
140139
```
141140
* Install lighthouse through npm
142141
```bash

ubuntu_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ if [ "$UBUNTU_VERSION" \< "18" ]; then
2929
fi
3030
sudo dbus-uuidgen --ensure
3131
if [ "$UBUNTU_VERSION" \< "20" ]; then
32-
until sudo pip install dnspython monotonic pillow psutil requests tornado wsaccel xvfbwrapper brotli marionette_driver selenium future usbmuxwrapper
32+
until sudo pip install dnspython monotonic pillow psutil requests tornado wsaccel xvfbwrapper marionette_driver selenium future usbmuxwrapper
3333
do
3434
sleep 1
3535
done
3636
sudo pip install 'fonttools>=3.44.0,<4.0.0'
3737
else
38-
until sudo pip3 install dnspython monotonic pillow psutil requests tornado wsaccel xvfbwrapper brotli selenium future usbmuxwrapper
38+
until sudo pip3 install dnspython monotonic pillow psutil requests tornado wsaccel xvfbwrapper selenium future usbmuxwrapper
3939
do
4040
sleep 1
4141
done

0 commit comments

Comments
 (0)