From 484c5abe9d9e885a4537e53454c22f787a0970bd Mon Sep 17 00:00:00 2001 From: Jeremy Grossmann Date: Tue, 26 Feb 2019 15:28:16 +0700 Subject: [PATCH] Force jsonschema dependency to 2.6.0 This is to fix this issue when starting the (frozen) application on Windows: ``` File "C:\Python36-x64\lib\site-packages\jsonschema\validators.py", line 505, in File "C:\Python36-x64\lib\site-packages\jsonschema\_utils.py", line 57, in load_schema File "C:\Python36-x64\lib\pkgutil.py", line 634, in get_data OSError: [Errno 34] Result too large: 'jsonschema\\schemas\\draft6.json' ``` --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index da5a9d3bc..cbbb39f11 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -jsonschema>=2.4.0 +jsonschema==2.6.0 raven>=5.23.0 psutil>=2.2.1