From 8a1837de305dc466b00267a5fa3815c982949196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emanuel=20Sch=C3=BCtze?= Date: Mon, 31 Mar 2014 23:52:33 +0200 Subject: [PATCH] Added new package "backports.ssl_match_hostname" for portable build script. --- extras/win32-portable/create_portable.txt | 2 +- extras/win32-portable/prepare_portable.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/extras/win32-portable/create_portable.txt b/extras/win32-portable/create_portable.txt index f30d0cbe9..747483684 100644 --- a/extras/win32-portable/create_portable.txt +++ b/extras/win32-portable/create_portable.txt @@ -7,7 +7,7 @@ How to create a new portable Windows distribution of OpenSlides: 2. Install all required python packages (see requirements_production.txt): - easy_install -Z django django-mptt beautifulsoup4 bleach natsort reportlab sockjs_tornado tornado django-haystack whoosh + easy_install -Z django django-mptt beautifulsoup4 bleach natsort reportlab sockjs_tornado tornado backports.ssl_match_hostname django-haystack whoosh 3. Install pywin32 from binary installer: diff --git a/extras/win32-portable/prepare_portable.py b/extras/win32-portable/prepare_portable.py index 303eee5b8..906b9efbc 100755 --- a/extras/win32-portable/prepare_portable.py +++ b/extras/win32-portable/prepare_portable.py @@ -78,6 +78,9 @@ SITE_PACKAGES = { "tornado": { "copy": ["tornado"], }, + "backports.ssl_match_hostname": { + "copy": ["backports"], + }, "beautifulsoup4": { "copy": ["bs4"], },