Make idna and precis-18n required dependencys

This commit is contained in:
Philipp Hörist 2018-10-19 23:25:47 +02:00
parent 5568b97063
commit 968aae2cd0
3 changed files with 6 additions and 3 deletions

View File

@ -11,7 +11,8 @@
- python3-openssl (>=0.14) - python3-openssl (>=0.14)
- python3-cssutils (>=1.0.2) - python3-cssutils (>=1.0.2)
- python3-keyring - python3-keyring
- python3-idna
- python3-precis-i18n
### Optional Runtime Requirements ### Optional Runtime Requirements
@ -25,7 +26,6 @@
- gir1.2-gupnpigd-1.0 for better NAT traversing - gir1.2-gupnpigd-1.0 for better NAT traversing
- gir1.2-networkmanager-1.0 for network lose detection - gir1.2-networkmanager-1.0 for network lose detection
- gir1.2-geoclue-2.0 for sharing your location - gir1.2-geoclue-2.0 for sharing your location
- python3-idna and python3-precis-i18n for correctly parsing JIDs
### Compile-time Requirements ### Compile-time Requirements

View File

@ -287,6 +287,8 @@ setup(
'keyring', 'keyring',
'nbxmpp>=0.6.8', 'nbxmpp>=0.6.8',
'pyOpenSSL>=0.12', 'pyOpenSSL>=0.12',
'cssutils>=1.0.2' 'cssutils>=1.0.2',
'precis-i18n>=1.0.0',
'idna>=2.7',
] ]
) )

View File

@ -103,6 +103,7 @@ python-axolotl
qrcode qrcode
cssutils cssutils
precis-i18n precis-i18n
idna
" "
build_pip install $(echo "$PIP_REQUIREMENTS" | tr ["\\n"] [" "]) build_pip install $(echo "$PIP_REQUIREMENTS" | tr ["\\n"] [" "])