Removed dependency to argparse and wsgiref as they're in standard python library.
wsgiref crashes during installation with python 3 as it's not compatible with python 3. Added dependency to pytz as it's used in the toaster code. Signed-off-by: Ed Bartosh <[email protected]> --- bitbake/toaster-requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbake/toaster-requirements.txt b/bitbake/toaster-requirements.txt index 0e8c742..987dc92 100644 --- a/bitbake/toaster-requirements.txt +++ b/bitbake/toaster-requirements.txt @@ -1,4 +1,4 @@ Django>1.8,<1.9 -argparse==1.2.1 -wsgiref==0.1.2 beautifulsoup4>=4.4.0 +wsgiref==0.1.2 +pytz -- 2.1.4 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
