Skip to content

Commit 4bdb7bc

Browse files
committed
TST enable http2 in mockserver
1 parent 75771ec commit 4bdb7bc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dockerfiles/splash/install-python-splash-deps.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ install_python_deps () {
77
${_PYTHON} -m pip install \
88
qt5reactor==0.5 \
99
psutil==5.0.0 \
10-
Twisted==19.7.0 \
10+
"Twisted[http2]==19.7.0" \
1111
adblockparser==0.7 \
1212
xvfbwrapper==0.2.9 \
1313
funcparserlib==0.3.6 \

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# install PyQt5 (Splash is tested on PyQT 5.13)
22
# and the following packages:
3-
twisted == 19.7.0
3+
twisted[http2] == 19.7.0
44
qt5reactor
55
psutil
66
adblockparser >= 0.5

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def get_version():
5959
]},
6060
'zip_safe': False,
6161
'install_requires': [
62-
'Twisted >= 19.7.0',
62+
'Twisted[http2] >= 19.7.0',
6363
'qt5reactor',
6464
'psutil',
6565
'adblockparser',

0 commit comments

Comments
 (0)