We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75771ec commit 4bdb7bcCopy full SHA for 4bdb7bc
dockerfiles/splash/install-python-splash-deps.sh
@@ -7,7 +7,7 @@ install_python_deps () {
7
${_PYTHON} -m pip install \
8
qt5reactor==0.5 \
9
psutil==5.0.0 \
10
- Twisted==19.7.0 \
+ "Twisted[http2]==19.7.0" \
11
adblockparser==0.7 \
12
xvfbwrapper==0.2.9 \
13
funcparserlib==0.3.6 \
requirements.txt
@@ -1,6 +1,6 @@
1
# install PyQt5 (Splash is tested on PyQT 5.13)
2
# and the following packages:
3
-twisted == 19.7.0
+twisted[http2] == 19.7.0
4
qt5reactor
5
psutil
6
adblockparser >= 0.5
setup.py
@@ -59,7 +59,7 @@ def get_version():
59
]},
60
'zip_safe': False,
61
'install_requires': [
62
- 'Twisted >= 19.7.0',
+ 'Twisted[http2] >= 19.7.0',
63
'qt5reactor',
64
'psutil',
65
'adblockparser',
0 commit comments